wok annotate libvips/receipt @ rev 18993

Add libvips
author Yuri Pourre <yuripourre@gmail.com>
date Fri Mar 18 20:39:51 2016 -0300 (2016-03-18)
parents
children a44bc8005b6b
rev   line source
yuripourre@18993 1 # SliTaz package receipt.
yuripourre@18993 2
yuripourre@18993 3 PACKAGE="libvips"
yuripourre@18993 4 VERSION="7.28.0"
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@18993 9 TARBALL="v$VERSION.tar.gz"
yuripourre@18993 10 WEB_SITE="http://www.vips.ecs.soton.ac.uk/"
yuripourre@18993 11 WGET_URL="https://github.com/jcupitt/$PACKAGE/archive/$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@18993 15 BUILD_DEPENDS="wget pkg-config gtk-doc libtool swig \
yuripourre@18993 16 gobject-introspection-dev fftw-dev lcms-dev"
yuripourre@18993 17
yuripourre@18993 18 # Rules to configure and make the package.
yuripourre@18993 19 compile_rules()
yuripourre@18993 20 {
yuripourre@18993 21 ./bootstrap.sh &&
yuripourre@18993 22 ./configure &&
yuripourre@18993 23 make &&
yuripourre@18993 24 make DESTDIR=$DESTDIR install
yuripourre@18993 25 }
yuripourre@18993 26
yuripourre@18993 27 # Rules to gen a SliTaz package suitable for Tazpkg.
yuripourre@18993 28 genpkg_rules()
yuripourre@18993 29 {
yuripourre@18993 30 mkdir -p $fs/usr/lib
yuripourre@18993 31 cp -a $install/usr/bin $fs/usr
yuripourre@18993 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
yuripourre@18993 33 }