wok-4.x rev 255
Add pcmanfm and gamin
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Feb 24 20:35:09 2008 +0100 (2008-02-24) |
parents | df615b5b2ad0 |
children | 4f833a54f594 |
files | gamin-dev/receipt gamin/receipt pcmanfm/receipt startup-notification-dev/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gamin-dev/receipt Sun Feb 24 20:35:09 2008 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gamin-dev" 1.7 +VERSION="0.1.9" 1.8 +CATEGORY="extra" 1.9 +SHORT_DESC="Devel files for gamin file and directory monitoring system." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +WANTED="gamin" 1.12 +WEB_SITE="http://www.gnome.org/~veillard/gamin/" 1.13 + 1.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.15 +genpkg_rules() 1.16 +{ 1.17 + mkdir -p $fs/usr/lib 1.18 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.19 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.20 + cp -a $_pkg/usr/include $fs/usr 1.21 +} 1.22 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gamin/receipt Sun Feb 24 20:35:09 2008 +0100 2.3 @@ -0,0 +1,34 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="gamin" 2.7 +VERSION="0.1.9" 2.8 +CATEGORY="extra" 2.9 +SHORT_DESC="File and directory monitoring system." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.12 +WEB_SITE="http://www.gnome.org/~veillard/gamin/" 2.13 +WGET_URL="http://www.gnome.org/~veillard/gamin/sources/$TARBALL" 2.14 + 2.15 +# Rules to configure and make the package. 2.16 +compile_rules() 2.17 +{ 2.18 + cd $src 2.19 + ./configure \ 2.20 + --prefix=/usr \ 2.21 + --sysconfdir=/etc \ 2.22 + --libexecdir=/usr/lib/gamin \ 2.23 + --infodir=/usr/share/info \ 2.24 + --mandir=/usr/share/man \ 2.25 + $CONFIGURE_ARGS 2.26 + make 2.27 + make DESTDIR=$PWD/_pkg 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 $_pkg/usr/lib/*.so* $fs/usr/lib 2.35 + cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib 2.36 +} 2.37 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/pcmanfm/receipt Sun Feb 24 20:35:09 2008 +0100 3.3 @@ -0,0 +1,37 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="pcmanfm" 3.7 +VERSION="0.3.6" 3.8 +CATEGORY="system-tools" 3.9 +SHORT_DESC="Light and easy to use file manager." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="gtk+ xorg gamin startup-notification" 3.12 +BUILD_DEPENDS="gtk+-dev gamin-dev startup-notification-dev shared-mime-info" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +WEB_SITE="http://pcmanfm.sourceforge.net/" 3.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 3.16 + 3.17 +# Rules to configure and make the package. 3.18 +compile_rules() 3.19 +{ 3.20 + cd $src 3.21 + ./configure \ 3.22 + --prefix=/usr \ 3.23 + --mandir=/usr/share/man \ 3.24 + --disable-hal \ 3.25 + $CONFIGURE_ARGS 3.26 + make 3.27 + make DESTDIR=$PWD/_pkg install 3.28 + # Avoid update-mime-database or update-desktop-database error in 0.3.5* 3.29 + echo "Avoid errors..." 3.30 +} 3.31 + 3.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.33 +genpkg_rules() 3.34 +{ 3.35 + mkdir -p $fs/usr/share 3.36 + cp -a $_pkg/usr/bin $fs/usr 3.37 + cp -a $_pkg/usr/share/mime $fs/usr/share 3.38 + cp -a $_pkg/usr/share/pcmanfm $fs/usr/share 3.39 +} 3.40 +
4.1 --- a/startup-notification-dev/receipt Sun Feb 24 20:26:27 2008 +0100 4.2 +++ b/startup-notification-dev/receipt Sun Feb 24 20:35:09 2008 +0100 4.3 @@ -10,16 +10,12 @@ 4.4 WANTED="startup-notification" 4.5 WEB_SITE="http://freedesktop.org/software/startup-notification/releases/" 4.6 4.7 - 4.8 - 4.9 # Rules to gen a SliTaz package suitable for Tazpkg. 4.10 genpkg_rules() 4.11 { 4.12 - mkdir -p $fs/usr/lib $fs/usr/include 4.13 + mkdir -p $fs/usr/lib 4.14 4.15 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 4.16 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 4.17 cp -a $_pkg/usr/include $fs/usr 4.18 - 4.19 - strip -s $fs/usr/lib/*.a 4.20 }