wok annotate p7zip-full/receipt @ rev 14865
Up: perl-extutils-depends (0.304)
author | Claudinei Pereira <claudinei@slitaz.org> |
---|---|
date | Mon Jul 22 19:45:04 2013 -0300 (2013-07-22) |
parents | 1667aade4f62 |
children | 51a1ebbda768 |
rev | line source |
---|---|
milka@1164 | 1 # SliTaz package receipt. |
milka@1164 | 2 |
milka@1164 | 3 PACKAGE="p7zip-full" |
milka@1164 | 4 SOURCE="p7zip" |
slaxemulator@9832 | 5 VERSION="9.20.1" |
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 cd $src |
milka@1164 | 17 make all3 |
gokhlayeh@9447 | 18 make DEST_HOME=$DESTDIR/usr install |
milka@1164 | 19 } |
milka@1164 | 20 |
milka@1164 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
milka@1164 | 22 genpkg_rules() |
milka@1164 | 23 { |
milka@1164 | 24 mkdir -p $fs/usr |
erjo@1192 | 25 cp -a $_pkg/usr/bin $fs/usr |
erjo@1192 | 26 cp -a $_pkg/usr/lib $fs/usr |
erjo@1192 | 27 |
erjo@1192 | 28 # Fix pathname in 7z scripts |
gokhlayeh@9447 | 29 sed -i -e "s#.*$_pkg#\"#" $fs/usr/bin/7z \ |
gokhlayeh@9447 | 30 $fs/usr/bin/7za $fs/usr/bin/7zr |
milka@1164 | 31 } |
milka@1164 | 32 |