wok-stable annotate lzip/receipt @ rev 12346
openldap: update pidfile (thanks cymon)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Oct 21 15:39:49 2012 +0200 (2012-10-21) |
parents | 926edf28a263 |
children |
rev | line source |
---|---|
mimas@2031 | 1 # SliTaz package receipt. |
mimas@2031 | 2 |
mimas@2031 | 3 PACKAGE="lzip" |
slaxemulator@6454 | 4 VERSION="1.11" |
mimas@2031 | 5 CATEGORY="utilities" |
mimas@2031 | 6 SHORT_DESC="LZMA compressor" |
mimas@2031 | 7 MAINTAINER="mimas@slitaz.org" |
pascal@5003 | 8 DEPENDS="gcc-lib-base" |
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 |
mimas@2031 | 13 # Rules to configure and make the package. |
mimas@2031 | 14 compile_rules() |
mimas@2031 | 15 { |
mimas@2031 | 16 cd $src |
pascal@5003 | 17 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@5003 | 18 make && |
mimas@2031 | 19 make DESTDIR=$PWD/_pkg install |
mimas@2031 | 20 } |
mimas@2031 | 21 |
mimas@2031 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2031 | 23 genpkg_rules() |
mimas@2031 | 24 { |
mimas@2031 | 25 mkdir -p $fs/usr |
mimas@2031 | 26 cp -a $_pkg/usr/bin $fs/usr |
erjo@4281 | 27 # cp $src/lzdiff $fs/usr/bin |
erjo@4281 | 28 # cp $src/lzgrep $fs/usr/bin |
mimas@2031 | 29 } |
mimas@2031 | 30 |