wok view p7zip-full/receipt @ rev 9611

python: Fix urllib Security Vulnerability CVE-2011-1521.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Apr 15 15:10:30 2011 +0000 (2011-04-15)
parents f018daea012c
children 5b198b5bc329
line source
1 # SliTaz package receipt.
3 PACKAGE="p7zip-full"
4 SOURCE="p7zip"
5 VERSION="9.20"
6 CATEGORY="utilities"
7 SHORT_DESC="A file archiver with a high compression ratio (full version with restricted codecs)"
8 MAINTAINER="milka@konstelacioj.info"
9 TARBALL="${SOURCE}_${VERSION}_src_all.tar.bz2"
10 WEB_SITE="http://p7zip.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make all3
18 make DEST_HOME=$DESTDIR/usr install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
25 cp -a $_pkg/usr/bin $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
28 # Fix pathname in 7z scripts
29 sed -i -e "s#.*$_pkg#\"#" $fs/usr/bin/7z \
30 $fs/usr/bin/7za $fs/usr/bin/7zr
31 }