wok-current annotate lzip/receipt @ rev 4265
procmail: fix build with glibc-2.10
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Sep 25 17:12:16 2009 +0200 (2009-09-25) |
parents | |
children | 911706b38733 |
rev | line source |
---|---|
mimas@2031 | 1 # SliTaz package receipt. |
mimas@2031 | 2 |
mimas@2031 | 3 PACKAGE="lzip" |
mimas@2031 | 4 VERSION="1.3" |
mimas@2031 | 5 CATEGORY="utilities" |
mimas@2031 | 6 SHORT_DESC="LZMA compressor" |
mimas@2031 | 7 MAINTAINER="mimas@slitaz.org" |
mimas@2031 | 8 DEPENDS="" |
mimas@2031 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mimas@2031 | 10 WEB_SITE="http://www.nongnu.org/lzip/lzip.html" |
mimas@2031 | 11 WGET_URL="http://nongnu.mirror.ironie.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 |
mimas@2031 | 17 ./configure --prefix=/usr $CONFIGURE_ARGS |
mimas@2031 | 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 |
mimas@2031 | 27 cp $src/lzdiff $fs/usr/bin |
mimas@2031 | 28 cp $src/lzgrep $fs/usr/bin |
mimas@2031 | 29 |
mimas@2031 | 30 strip $fs/usr/bin/lzip |
mimas@2031 | 31 } |
mimas@2031 | 32 |