wok annotate lzip/receipt @ rev 17404
Up lzip (1.16)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 28 16:54:30 2014 +0100 (2014-11-28) |
parents | 2b9f96603415 |
children | d7f8436a2f34 |
rev | line source |
---|---|
mimas@2031 | 1 # SliTaz package receipt. |
mimas@2031 | 2 |
mimas@2031 | 3 PACKAGE="lzip" |
pascal@17404 | 4 VERSION="1.16" |
mimas@2031 | 5 CATEGORY="utilities" |
mimas@2031 | 6 SHORT_DESC="LZMA compressor" |
mimas@2031 | 7 MAINTAINER="mimas@slitaz.org" |
pascal@17404 | 8 LICENSE="GPL2" |
mimas@2031 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mimas@2031 | 10 WEB_SITE="http://www.nongnu.org/lzip/lzip.html" |
slaxemulator@6454 | 11 WGET_URL="http://download.savannah.gnu.org/releases/lzip/$TARBALL" |
mimas@2031 | 12 |
pascal@14133 | 13 DEPENDS="gcc-lib-base" |
pascal@14133 | 14 |
mimas@2031 | 15 # Rules to configure and make the package. |
mimas@2031 | 16 compile_rules() |
mimas@2031 | 17 { |
pascal@5003 | 18 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@5003 | 19 make && |
pascal@14133 | 20 make DESTDIR=$DESTDIR install |
mimas@2031 | 21 } |
mimas@2031 | 22 |
mimas@2031 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2031 | 24 genpkg_rules() |
mimas@2031 | 25 { |
mimas@2031 | 26 mkdir -p $fs/usr |
pascal@14133 | 27 cp -a $install/usr/bin $fs/usr |
erjo@4281 | 28 # cp $src/lzdiff $fs/usr/bin |
erjo@4281 | 29 # cp $src/lzgrep $fs/usr/bin |
mimas@2031 | 30 } |
mimas@2031 | 31 |