wok view libvips/receipt @ rev 20917

updated fdupes (1.40 -> 1.6.1)
author Hans-G?nter Theisgen
date Thu Feb 28 17:10:02 2019 +0100 (2019-02-28)
parents a44bc8005b6b
children 1daf24fb0842
line source
1 # SliTaz package receipt.
3 PACKAGE="libvips"
4 VERSION="7.42.3"
5 CATEGORY="utilities"
6 LICENSE="LGPL2.1"
7 SHORT_DESC="An image processing library."
8 MAINTAINER="yuripourre@gmail.com"
9 TARBALL="vips-$VERSION.tar.gz"
10 WEB_SITE="http://www.vips.ecs.soton.ac.uk/"
11 WGET_URL="$WEB_SITE/supported/${VERSION%.*}/$TARBALL"
12 TAGS="image"
13 DEPENDS="fftw lcms pango libpng jpeg imagemagick tiff zlib glib \
14 libexif openexr liboil"
15 BUILD_DEPENDS="wget cacerts pkg-config gtk-doc libtool swig \
16 gobject-introspection-dev fftw-dev lcms-dev libpng-dev jpeg-dev \
17 imagemagick-dev tiff-dev zlib-dev libexif-dev file"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./bootstrap.sh &&
23 autoreconf &&
24 ./configure --prefix=/usr \
25 --enable-gtk-doc=no &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }