# HG changeset patch # User Christophe Lincoln # Date 1219061693 -7200 # Node ID cb4a268d4d7100abb070c89d38103643117d7a20 # Parent b0aee4a2315253ad793db26d347e9095b4d478ab Add: libexif (images info manipulation) diff -r b0aee4a23152 -r cb4a268d4d71 libexif-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libexif-dev/receipt Mon Aug 18 14:14:53 2008 +0200 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="libexif-dev" +VERSION="0.6.16" +CATEGORY="development" +SHORT_DESC="Libexif devel files." +WANTED="libexif" +MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://libexif.sourceforge.net/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r b0aee4a23152 -r cb4a268d4d71 libexif/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libexif/receipt Mon Aug 18 14:14:53 2008 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="libexif" +VERSION="0.6.16" +CATEGORY="system-tools" +SHORT_DESC="Reads and writes EXIF metainformation from and to image files." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://libexif.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +}