wok annotate lzip/receipt @ rev 15957
Add: compiz-plugins-extra + compiz-plugins-unsupported
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Feb 23 19:58:48 2014 +0100 (2014-02-23) |
parents | 60895beeccbb |
children | 05a0cbbb07b4 |
rev | line source |
---|---|
mimas@2031 | 1 # SliTaz package receipt. |
mimas@2031 | 2 |
mimas@2031 | 3 PACKAGE="lzip" |
pascal@14133 | 4 VERSION="1.13" |
mimas@2031 | 5 CATEGORY="utilities" |
mimas@2031 | 6 SHORT_DESC="LZMA compressor" |
mimas@2031 | 7 MAINTAINER="mimas@slitaz.org" |
pascal@14999 | 8 LICENSE="GPL3" |
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 { |
mimas@2031 | 18 cd $src |
pascal@5003 | 19 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@5003 | 20 make && |
pascal@14133 | 21 make DESTDIR=$DESTDIR install |
mimas@2031 | 22 } |
mimas@2031 | 23 |
mimas@2031 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2031 | 25 genpkg_rules() |
mimas@2031 | 26 { |
mimas@2031 | 27 mkdir -p $fs/usr |
pascal@14133 | 28 cp -a $install/usr/bin $fs/usr |
erjo@4281 | 29 # cp $src/lzdiff $fs/usr/bin |
erjo@4281 | 30 # cp $src/lzgrep $fs/usr/bin |
mimas@2031 | 31 } |
mimas@2031 | 32 |