wok rev 18993
Add libvips
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Fri Mar 18 20:39:51 2016 -0300 (2016-03-18) |
parents | f279f23b1966 |
children | a44bc8005b6b |
files | libvips-dev/receipt libvips/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libvips-dev/receipt Fri Mar 18 20:39:51 2016 -0300 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libvips-dev" 1.7 +VERSION="7.28.0" 1.8 +CATEGORY="development" 1.9 +LICENSE="LGPL2.1" 1.10 +SHORT_DESC="An image processing library, devel files." 1.11 +MAINTAINER="yuripourre@gmail.com" 1.12 +WANTED="libvips" 1.13 + 1.14 +DEPENDS="libvips" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + mkdir -p $fs/usr/lib $fs/usr/include 1.20 + cp -a $install/usr/lib/*.a $fs/usr/lib 1.21 + cp -a $install/usr/lib/*.la $fs/usr/lib 1.22 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.23 + cp -a $install/usr/include $fs/usr 1.24 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libvips/receipt Fri Mar 18 20:39:51 2016 -0300 2.3 @@ -0,0 +1,33 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libvips" 2.7 +VERSION="7.28.0" 2.8 +CATEGORY="utilities" 2.9 +LICENSE="LGPL2.1" 2.10 +SHORT_DESC="An image processing library." 2.11 +MAINTAINER="yuripourre@gmail.com" 2.12 +TARBALL="v$VERSION.tar.gz" 2.13 +WEB_SITE="http://www.vips.ecs.soton.ac.uk/" 2.14 +WGET_URL="https://github.com/jcupitt/$PACKAGE/archive/$TARBALL" 2.15 +TAGS="image" 2.16 +DEPENDS="fftw lcms pango libpng jpeg imagemagick tiff zlib glib \ 2.17 +libexif openexr liboil" 2.18 +BUILD_DEPENDS="wget pkg-config gtk-doc libtool swig \ 2.19 +gobject-introspection-dev fftw-dev lcms-dev" 2.20 + 2.21 +# Rules to configure and make the package. 2.22 +compile_rules() 2.23 +{ 2.24 + ./bootstrap.sh && 2.25 + ./configure && 2.26 + make && 2.27 + make DESTDIR=$DESTDIR install 2.28 +} 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + mkdir -p $fs/usr/lib 2.34 + cp -a $install/usr/bin $fs/usr 2.35 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.36 +}