Add Amazon Linux 2015.03

Update to libvips version 8.0.2
This commit is contained in:
Lovell Fuller 2015-05-07 15:50:14 +01:00
parent 8fd3520257
commit b77877c83d
2 changed files with 7 additions and 3 deletions

View File

@ -3,7 +3,7 @@ platform: Win32
configuration: Release
environment:
VIPS_VERSION_MAJOR_MINOR: 8.0
VIPS_VERSION_PATCH: 0
VIPS_VERSION_PATCH: 2
VIPS_WARNING: 0
matrix:
- nodejs_version: "0.10"

View File

@ -14,7 +14,7 @@
vips_version_minimum=7.40.0
vips_version_latest_major_minor=8.0
vips_version_latest_patch=1
vips_version_latest_patch=2
openslide_version_minimum=3.4.0
openslide_version_latest_major_minor=3.4
@ -321,7 +321,7 @@ case $(uname -s) in
# Probably Amazon Linux
RELEASE=$(cat /etc/system-release)
case $RELEASE in
"Amazon Linux AMI release 2014.09")
"Amazon Linux AMI release 2014.09"|"Amazon Linux AMI release 2015.03")
# Amazon Linux
echo "Detected '$RELEASE'"
echo "Installing libvips dependencies via yum"
@ -329,6 +329,10 @@ case $(uname -s) in
yum install -y gtk-doc libxml2-devel libjpeg-turbo-devel libpng-devel libtiff-devel libexif-devel libgsf-devel lcms-devel ImageMagick-devel gobject-introspection-devel libwebp-devel curl
install_libvips_from_source "--prefix=/usr"
;;
*)
# Unsupported Amazon Linux version
sorry "vips" "$RELEASE"
;;
esac
elif [ -f /etc/os-release ]; then
RELEASE=$(cat /etc/os-release | grep VERSION)