Skip to content

Commit

Permalink
Updated vips to 7.40.8
Browse files Browse the repository at this point in the history
  • Loading branch information
alex88 committed Sep 15, 2014
1 parent b0402b5 commit 8a6f299
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ heroku-buildpack-vips

Heroku buildpack with [libvips](https://github.com/jcupitt/libvips) installed.

Current vips version is 7.40.3 with webp 0.4.0, orc 0.4.18, fftw 3.3.4 and libgsf 1.14.30
Current vips version is 7.40.8 with webp 0.4.0, orc 0.4.18, fftw 3.3.4 and libgsf 1.14.30

## Usage

Expand Down Expand Up @@ -37,14 +37,15 @@ This is the script used to build vips on `heroku run bash`
#!/bin/bash

# Set vips version
export VIPS_VERSION=7.40.3
export VIPS_VERSION=7.40.8
export WEBP_VERSION=0.4.0
export ORC_VERSION=0.4.18
export FFTW_VERSION=3.3.4
export GETTEXT_VERSION=0.19.1
export BUILD_PATH=/tmp
export OUT_PATH=/app/vendor/vips
export PKG_CONFIG_PATH=$OUT_PATH/lib/pkgconfig:$PKG_CONFIG_PATH
export PATH=$PATH:$OUT_PATH/bin

# Remove out path if already exists
rm -Rf $OUT_PATH
Expand Down
4 changes: 2 additions & 2 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ mkdir -p $output_dir
mkdir -p $temp_app_dir

echo "Downloading libvips and unpacking" | indent
curl -s https://s3-eu-west-1.amazonaws.com/visup-misc/heroku-buildpack-vips/201406041135.tar.gz | tar xz -C $output_dir
curl -s https://s3-eu-west-1.amazonaws.com/visup-misc/heroku-buildpack-vips/201409151000.tar.gz | tar xz -C $output_dir

if [ $? != 0 ]; then
echo "Error downloading vips and unpacking to build dir" | indent
exit 1
fi

curl -s https://s3-eu-west-1.amazonaws.com/visup-misc/heroku-buildpack-vips/201406041135.tar.gz | tar xz -C $temp_app_dir
curl -s https://s3-eu-west-1.amazonaws.com/visup-misc/heroku-buildpack-vips/201409151000.tar.gz | tar xz -C $temp_app_dir

if [ $? != 0 ]; then
echo "Error downloading vips and unpacking to app dir" | indent
Expand Down

0 comments on commit 8a6f299

Please sign in to comment.