diff --git a/README.md b/README.md index 1eb03a0..722602e 100644 --- a/README.md +++ b/README.md @@ -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 @@ -37,7 +37,7 @@ 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 @@ -45,6 +45,7 @@ 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 diff --git a/bin/compile b/bin/compile index 34c93ee..3e94d49 100644 --- a/bin/compile +++ b/bin/compile @@ -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