wok-next diff libvips/receipt @ rev 19212
airgeddon: fix wget_url
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 14 10:00:11 2016 +0200 (2016-06-14) |
parents | 2830c76f55be |
children | f1abbf87ec90 |
line diff
1.1 --- a/libvips/receipt Fri Mar 18 20:39:51 2016 -0300 1.2 +++ b/libvips/receipt Tue Jun 14 10:00:11 2016 +0200 1.3 @@ -1,25 +1,28 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libvips" 1.7 -VERSION="7.28.0" 1.8 +VERSION="7.42.3" 1.9 CATEGORY="utilities" 1.10 LICENSE="LGPL2.1" 1.11 SHORT_DESC="An image processing library." 1.12 MAINTAINER="yuripourre@gmail.com" 1.13 -TARBALL="v$VERSION.tar.gz" 1.14 +TARBALL="vips-$VERSION.tar.gz" 1.15 WEB_SITE="http://www.vips.ecs.soton.ac.uk/" 1.16 -WGET_URL="https://github.com/jcupitt/$PACKAGE/archive/$TARBALL" 1.17 +WGET_URL="$WEB_SITE/supported/${VERSION%.*}/$TARBALL" 1.18 TAGS="image" 1.19 DEPENDS="fftw lcms pango libpng jpeg imagemagick tiff zlib glib \ 1.20 libexif openexr liboil" 1.21 -BUILD_DEPENDS="wget pkg-config gtk-doc libtool swig \ 1.22 -gobject-introspection-dev fftw-dev lcms-dev" 1.23 +BUILD_DEPENDS="wget cacerts pkg-config gtk-doc libtool swig \ 1.24 +gobject-introspection-dev fftw-dev lcms-dev libpng-dev jpeg-dev \ 1.25 +imagemagick-dev tiff-dev zlib-dev libexif-dev" 1.26 1.27 # Rules to configure and make the package. 1.28 compile_rules() 1.29 { 1.30 ./bootstrap.sh && 1.31 - ./configure && 1.32 + autoreconf && 1.33 + ./configure --prefix=/usr \ 1.34 + --enable-gtk-doc=no && 1.35 make && 1.36 make DESTDIR=$DESTDIR install 1.37 }