wok annotate libvips/receipt @ rev 20207
Up tazlito (483)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 22 22:59:30 2018 +0100 (2018-02-22) |
parents | 2830c76f55be |
children | b21f0b31e0c2 |
rev | line source |
---|---|
yuripourre@18993 | 1 # SliTaz package receipt. |
yuripourre@18993 | 2 |
yuripourre@18993 | 3 PACKAGE="libvips" |
yuripourre@18994 | 4 VERSION="7.42.3" |
yuripourre@18993 | 5 CATEGORY="utilities" |
yuripourre@18993 | 6 LICENSE="LGPL2.1" |
yuripourre@18993 | 7 SHORT_DESC="An image processing library." |
yuripourre@18993 | 8 MAINTAINER="yuripourre@gmail.com" |
yuripourre@18994 | 9 TARBALL="vips-$VERSION.tar.gz" |
yuripourre@18993 | 10 WEB_SITE="http://www.vips.ecs.soton.ac.uk/" |
yuripourre@18994 | 11 WGET_URL="$WEB_SITE/supported/${VERSION%.*}/$TARBALL" |
yuripourre@18993 | 12 TAGS="image" |
yuripourre@18993 | 13 DEPENDS="fftw lcms pango libpng jpeg imagemagick tiff zlib glib \ |
yuripourre@18993 | 14 libexif openexr liboil" |
yuripourre@18994 | 15 BUILD_DEPENDS="wget cacerts pkg-config gtk-doc libtool swig \ |
yuripourre@18994 | 16 gobject-introspection-dev fftw-dev lcms-dev libpng-dev jpeg-dev \ |
yuripourre@18994 | 17 imagemagick-dev tiff-dev zlib-dev libexif-dev" |
yuripourre@18993 | 18 |
yuripourre@18993 | 19 # Rules to configure and make the package. |
yuripourre@18993 | 20 compile_rules() |
yuripourre@18993 | 21 { |
yuripourre@18993 | 22 ./bootstrap.sh && |
yuripourre@18994 | 23 autoreconf && |
yuripourre@18994 | 24 ./configure --prefix=/usr \ |
yuripourre@18994 | 25 --enable-gtk-doc=no && |
yuripourre@18993 | 26 make && |
yuripourre@18993 | 27 make DESTDIR=$DESTDIR install |
yuripourre@18993 | 28 } |
yuripourre@18993 | 29 |
yuripourre@18993 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
yuripourre@18993 | 31 genpkg_rules() |
yuripourre@18993 | 32 { |
yuripourre@18993 | 33 mkdir -p $fs/usr/lib |
yuripourre@18993 | 34 cp -a $install/usr/bin $fs/usr |
yuripourre@18993 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
yuripourre@18993 | 36 } |