# HG changeset patch # User Mallory MOLLO # Date 1216852736 -7200 # Node ID e835f5d77665d079b55177d0ee883ec31f92a6ef # Parent c56a51e9604132c5e8c35e4a4088c623dff5c3ca Receipt for feh - Image viewer and composer Receipt for giblib - Graphic library, Imlib2 wrapper. Requested by feh. Receipt for giblib - Giblib development files. Requested to build feh. diff -r c56a51e96041 -r e835f5d77665 feh/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/feh/receipt Thu Jul 24 00:38:56 2008 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt + +PACKAGE="feh" +VERSION="1.3.4" +CATEGORY="graphics" +SHORT_DESC="Lightweight and powerfull image viewer and composer" +MAINTAINER="mallory@sweetpeople.org" +DEPENDS="imlib2 giblib" +BUILD_DEPENDS="imlib2-dev imlib2 giblib-dev giblib" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://linuxbrit.co.uk/feh/" +WGET_URL="http://linuxbrit.co.uk/downloads/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr + make + make DESTDIR=../_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $_pkg/usr/bin/feh $fs/usr/bin +} diff -r c56a51e96041 -r e835f5d77665 giblib-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/giblib-dev/receipt Thu Jul 24 00:38:56 2008 +0200 @@ -0,0 +1,25 @@ +# SliTaz package receipt + +PACKAGE="giblib-dev" +VERSION="1.2.4" +CATEGORY="graphics" +SHORT_DESC="Giblib graphic library development files." +MAINTAINER="mallory@sweetpeople.org" +WANTED="giblib" +WEB_SITE="http://linuxbrit.co.uk/feh/" + + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/include + cp -a $_pkg/usr/include $fs/usr +} diff -r c56a51e96041 -r e835f5d77665 giblib/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/giblib/receipt Thu Jul 24 00:38:56 2008 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt + +PACKAGE="giblib" +VERSION="1.2.4" +CATEGORY="graphics" +SHORT_DESC="Giblib graphic library." +MAINTAINER="mallory@sweetpeople.org" +DEPENDS="imlib2" +BUILD_DEPENDS="imlib2-dev imlib2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://linuxbrit.co.uk/feh/" +WGET_URL="http://linuxbrit.co.uk/downloads/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/{bin,lib} $fs/usr +}