wok rev 455

Add: tar, xarchiver, listpatron and fix deps for obconf (tar)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Mar 18 15:30:49 2008 +0100 (2008-03-18)
parents 638a532403f8
children 4f780f823a07
files listpatron/receipt listpatron/stuff/listpatron.desktop obconf/receipt tar/receipt xarchiver/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/listpatron/receipt	Tue Mar 18 15:30:49 2008 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="listpatron"
     1.7 +VERSION="0.1.1"
     1.8 +CATEGORY="office"
     1.9 +SHORT_DESC="GTK+2 application for maintaining lists of information.."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="gtk+"
    1.12 +BUILD_DEPENDS="gtk+-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://www.electricmonk.nl/Programmings/ListPatron"
    1.15 +WGET_URL="http://projects.electricmonk.nl/projects/$PACKAGE/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--libexecdir=/usr/lib/$PACKAGE \
    1.24 +		$CONFIGURE_ARGS
    1.25 +	make
    1.26 +	make DESTDIR=$PWD/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +    mkdir -p $fs/usr/share/pixmaps
    1.33 +    cp -a $_pkg/usr/bin $fs/usr
    1.34 +    #cp -a $_pkg/usr/lib $fs/usr
    1.35 +    cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    1.36 +    cp $_pkg/usr/share/icons/hicolor/48x48/apps/xarchiver.png \
    1.37 +    	$fs/usr/share/pixmaps
    1.38 +}
    1.39 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/listpatron/stuff/listpatron.desktop	Tue Mar 18 15:30:49 2008 +0100
     2.3 @@ -0,0 +1,7 @@
     2.4 +[Desktop Entry]
     2.5 +Encoding=UTF-8
     2.6 +Name=ListPatron
     2.7 +Exec=listpatron
     2.8 +Icon=/usr/share/pixmaps/listpatron/icons/listpatron-col-add.png
     2.9 +Type=Application
    2.10 +Categories=Office;
     3.1 --- a/obconf/receipt	Tue Mar 18 14:47:15 2008 +0100
     3.2 +++ b/obconf/receipt	Tue Mar 18 15:30:49 2008 +0100
     3.3 @@ -5,7 +5,7 @@
     3.4  CATEGORY="x-window"
     3.5  SHORT_DESC="Openbox WM configuration interface."
     3.6  MAINTAINER="pankso@slitaz.org"
     3.7 -DEPENDS="openbox gtk+ libglade"
     3.8 +DEPENDS="openbox gtk+ libglade tar"
     3.9  BUILD_DEPENDS="xorg-dev gtk+-dev libglade-dev"
    3.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.11  WEB_SITE="http://icculus.org/openbox/"
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/tar/receipt	Tue Mar 18 15:30:49 2008 +0100
     4.3 @@ -0,0 +1,43 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="tar"
     4.7 +VERSION="1.19"
     4.8 +CATEGORY="utilities"
     4.9 +SHORT_DESC="GNU tar archiving tools."
    4.10 +MAINTAINER="pankso@slitaz.org"
    4.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    4.12 +WEB_SITE=""
    4.13 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    4.14 +
    4.15 +
    4.16 +# Rules to configure and make the package.
    4.17 +compile_rules()
    4.18 +{
    4.19 +	cd $src
    4.20 +	./configure \
    4.21 +		--prefix=/usr \
    4.22 +		--libexecdir=/usr/lib/$PACKAGE \
    4.23 +		$CONFIGURE_ARGS
    4.24 +	make
    4.25 +	make DESTDIR=$PWD/_pkg install
    4.26 +}
    4.27 +
    4.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.29 +genpkg_rules()
    4.30 +{
    4.31 +    mkdir -p $fs/usr
    4.32 +    cp -a $_pkg/usr/bin $fs/usr
    4.33 +}
    4.34 +
    4.35 +# Prevent erasing busybox...
    4.36 +pre_install()
    4.37 +{
    4.38 +	local root
    4.39 +	root=$1
    4.40 +	rm -f $root/usr/bin/tar
    4.41 +}
    4.42 +
    4.43 +post_remove()
    4.44 +{
    4.45 +	ln -s /bin/busybox /usr/bin/tar
    4.46 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/xarchiver/receipt	Tue Mar 18 15:30:49 2008 +0100
     5.3 @@ -0,0 +1,36 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="xarchiver"
     5.7 +VERSION="0.4.6"
     5.8 +CATEGORY="utilities"
     5.9 +SHORT_DESC="GTK+2 frontend to various command line archiving tools."
    5.10 +MAINTAINER="pankso@slitaz.org"
    5.11 +DEPENDS="gtk+ tar"
    5.12 +BUILD_DEPENDS="gtk+-dev"
    5.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    5.14 +WEB_SITE="http://xarchiver.xfce.org/"
    5.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    5.16 +
    5.17 +# Rules to configure and make the package.
    5.18 +compile_rules()
    5.19 +{
    5.20 +	cd $src
    5.21 +	./configure \
    5.22 +		--prefix=/usr \
    5.23 +		--libexecdir=/usr/lib/$PACKAGE \
    5.24 +		$CONFIGURE_ARGS
    5.25 +	make
    5.26 +	make DESTDIR=$PWD/_pkg install
    5.27 +}
    5.28 +
    5.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.30 +genpkg_rules()
    5.31 +{
    5.32 +    mkdir -p $fs/usr/share/pixmaps
    5.33 +    cp -a $_pkg/usr/bin $fs/usr
    5.34 +    #cp -a $_pkg/usr/lib $fs/usr
    5.35 +    cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    5.36 +    cp $_pkg/usr/share/icons/hicolor/48x48/apps/xarchiver.png \
    5.37 +    	$fs/usr/share/pixmaps
    5.38 +}
    5.39 +