wok-6.x annotate p7zip-full/receipt @ rev 6654
Added linux-api-headers. This is like linux-headers but it doesn't depend on linux to be build. Also this means we can update the kernel without rebuild the toolchain.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Oct 11 02:17:02 2010 +0000 (2010-10-11) |
parents | a476c9adf53b |
children | 2b5d1947028d |
rev | line source |
---|---|
milka@1164 | 1 # SliTaz package receipt. |
milka@1164 | 2 |
milka@1164 | 3 PACKAGE="p7zip-full" |
milka@1164 | 4 SOURCE="p7zip" |
devl547@5695 | 5 VERSION="9.13" |
milka@1164 | 6 CATEGORY="utilities" |
milka@1164 | 7 SHORT_DESC="A file archiver with a high compression ratio (full version with restricted codecs)" |
milka@1164 | 8 MAINTAINER="milka@konstelacioj.info" |
milka@1168 | 9 TARBALL="${SOURCE}_${VERSION}_src_all.tar.bz2" |
milka@1164 | 10 WEB_SITE="http://p7zip.sourceforge.net/" |
milka@1168 | 11 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" |
milka@1164 | 12 |
milka@1164 | 13 # Rules to configure and make the package. |
milka@1164 | 14 compile_rules() |
milka@1164 | 15 { |
milka@1164 | 16 mv "$SOURCE"_"$VERSION" $src |
milka@1164 | 17 cd $src |
milka@1164 | 18 make all3 |
erjo@1192 | 19 make DEST_HOME=$PWD/_pkg/usr install |
milka@1164 | 20 } |
milka@1164 | 21 |
milka@1164 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
milka@1164 | 23 genpkg_rules() |
milka@1164 | 24 { |
milka@1164 | 25 mkdir -p $fs/usr |
erjo@1192 | 26 cp -a $_pkg/usr/bin $fs/usr |
erjo@1192 | 27 cp -a $_pkg/usr/lib $fs/usr |
erjo@1192 | 28 |
erjo@1192 | 29 # Fix pathname in 7z scripts |
erjo@1192 | 30 sed -i -e "s#$_pkg##" $fs/usr/bin/7z |
erjo@1192 | 31 sed -i -e "s#$_pkg##" $fs/usr/bin/7za |
erjo@1192 | 32 sed -i -e "s#$_pkg##" $fs/usr/bin/7zr |
milka@1164 | 33 } |
milka@1164 | 34 |