# HG changeset patch # User Christophe Lincoln # Date 1203881709 -3600 # Node ID 54b059c3da8e5879d757db16572cb50de7e17473 # Parent df615b5b2ad0f9b94a04cf5dcd9ed5599687cd4f Add pcmanfm and gamin diff -r df615b5b2ad0 -r 54b059c3da8e gamin-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gamin-dev/receipt Sun Feb 24 20:35:09 2008 +0100 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="gamin-dev" +VERSION="0.1.9" +CATEGORY="extra" +SHORT_DESC="Devel files for gamin file and directory monitoring system." +MAINTAINER="pankso@slitaz.org" +WANTED="gamin" +WEB_SITE="http://www.gnome.org/~veillard/gamin/" + +# 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 df615b5b2ad0 -r 54b059c3da8e gamin/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gamin/receipt Sun Feb 24 20:35:09 2008 +0100 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="gamin" +VERSION="0.1.9" +CATEGORY="extra" +SHORT_DESC="File and directory monitoring system." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnome.org/~veillard/gamin/" +WGET_URL="http://www.gnome.org/~veillard/gamin/sources/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/gamin \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $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 + cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib +} + diff -r df615b5b2ad0 -r 54b059c3da8e pcmanfm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcmanfm/receipt Sun Feb 24 20:35:09 2008 +0100 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="pcmanfm" +VERSION="0.3.6" +CATEGORY="system-tools" +SHORT_DESC="Light and easy to use file manager." +MAINTAINER="pankso@slitaz.org" +DEPENDS="gtk+ xorg gamin startup-notification" +BUILD_DEPENDS="gtk+-dev gamin-dev startup-notification-dev shared-mime-info" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://pcmanfm.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --disable-hal \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install + # Avoid update-mime-database or update-desktop-database error in 0.3.5* + echo "Avoid errors..." +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/mime $fs/usr/share + cp -a $_pkg/usr/share/pcmanfm $fs/usr/share +} + diff -r df615b5b2ad0 -r 54b059c3da8e startup-notification-dev/receipt --- a/startup-notification-dev/receipt Sun Feb 24 20:26:27 2008 +0100 +++ b/startup-notification-dev/receipt Sun Feb 24 20:35:09 2008 +0100 @@ -10,16 +10,12 @@ WANTED="startup-notification" WEB_SITE="http://freedesktop.org/software/startup-notification/releases/" - - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/include + 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 - - strip -s $fs/usr/lib/*.a }