Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vips patch. Change download to GitHub. Add Debian Sonya. #1211

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions bin/vips_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

vips_version_minimum=8.4.0
vips_version_latest_major_minor=8.4
vips_version_latest_patch=5
vips_version_latest_patch=6

install_libvips_from_source() {
echo "Compiling libvips $vips_version_latest_major_minor.$vips_version_latest_patch from source"
Expand All @@ -25,8 +25,7 @@ install_libvips_from_source() {
else
mkdir vips_install
cd vips_install
curl -O http://www.vips.ecs.soton.ac.uk/supported/current/vips-$vips_version_latest_major_minor.$vips_version_latest_patch.tar.gz
tar zvxf vips-$vips_version_latest_major_minor.$vips_version_latest_patch.tar.gz
curl -sL https://github.com/jcupitt/libvips/releases/download/v$vips_version_latest_major_minor.$vips_version_latest_patch/vips-$vips_version_latest_major_minor.$vips_version_latest_patch.tar.gz | tar zvx
cd vips-$vips_version_latest_major_minor.$vips_version_latest_patch
./configure --enable-debug=no --enable-docs=no --enable-cxx=yes --without-python --without-orc --without-fftw $1
make
Expand Down Expand Up @@ -97,7 +96,7 @@ case $(uname -s) in
echo "Installing libvips via apt-get"
apt-get install -y libvips-dev libgsf-1-dev
;;
trusty|utopic|qiana|rebecca)
trusty|utopic|qiana|rebecca|sonya)
# Ubuntu 14, Mint 17
echo "Installing libvips dependencies via apt-get"
apt-get install -y automake build-essential gobject-introspection gtk-doc-tools libglib2.0-dev libjpeg-turbo8-dev libpng12-dev libwebp-dev libtiff5-dev libexif-dev libgsf-1-dev liblcms2-dev libxml2-dev swig libmagickcore-dev curl libgirepository1.0-dev
Expand Down