# HG changeset patch # User Eric Joseph-Alexandre # Date 1217891605 -7200 # Node ID a476c9adf53b4c65e8359813a99b905accf6ec94 # Parent 98a84b65417dea8b9b6311a6300f68bbab4c8f07 Fix: now p7zip can deal with Rer files. diff -r 98a84b65417d -r a476c9adf53b p7zip-full/receipt --- a/p7zip-full/receipt Tue Aug 05 00:37:08 2008 +0200 +++ b/p7zip-full/receipt Tue Aug 05 01:13:25 2008 +0200 @@ -6,7 +6,6 @@ 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/$SOURCE/$TARBALL" @@ -17,14 +16,19 @@ mv "$SOURCE"_"$VERSION" $src cd $src make all3 + make DEST_HOME=$PWD/_pkg/usr install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $src/bin $fs/usr - strip -s $fs/usr/bin/* + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + + # Fix pathname in 7z scripts + sed -i -e "s#$_pkg##" $fs/usr/bin/7z + sed -i -e "s#$_pkg##" $fs/usr/bin/7za + sed -i -e "s#$_pkg##" $fs/usr/bin/7zr } -