# HG changeset patch # User Michael Dupont # Date 1217357377 -7200 # Node ID 9c8c544854ff0bdb18d879f8e17f1d4228d3ec07 # Parent 739a2a9402c1edef7be2c799659a0e6e6e3a4322 Add: p7zip and p7zip-full diff -r 739a2a9402c1 -r 9c8c544854ff p7zip-full/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/p7zip-full/receipt Tue Jul 29 20:49:37 2008 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="p7zip-full" +SOURCE="p7zip" +VERSION="4.58" +CATEGORY="utilities" +SHORT_DESC="A file archiver with a high compression ratio (full version with restricted codecs)" +MAINTAINER="milka@konstelacioj.info" +#DEPENDS="" +TARBALL="$SOURCE"_"$VERSION"_"src"_"all.tar.bz2" +WEB_SITE="http://p7zip.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + mv "$SOURCE"_"$VERSION" $src + cd $src + make all3 + mkdir -p $PWD/_pkg/usr/ + mv $PWD/bin $PWD/_pkg/usr/ +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* +} + + diff -r 739a2a9402c1 -r 9c8c544854ff p7zip/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/p7zip/receipt Tue Jul 29 20:49:37 2008 +0200 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="p7zip" +VERSION="4.58" +CATEGORY="utilities" +SHORT_DESC="A file archiver with a high compression ratio (supports only 7z archives)" +MAINTAINER="milka@konstelacioj.info" +#DEPENDS="" +TARBALL="$PACKAGE"_"$VERSION"_"src"_"all.tar.bz2" +WEB_SITE="http://p7zip.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + mv "$PACKAGE"_"$VERSION" $src + cd $src + make 7zr + mkdir -p $PWD/_pkg/usr + mv $PWD/bin $PWD/_pkg/usr/ +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* +} +