wok annotate lzip/receipt @ rev 19091

Add brower-html5 virtual package
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 01 10:11:21 2016 +0200 (2016-05-01)
parents 05a0cbbb07b4
children 35a23f513b71
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"
pascal@19091 12 HOST_ARCH="i486 arm"
mimas@2031 13
pascal@14133 14 DEPENDS="gcc-lib-base"
pascal@14133 15
mimas@2031 16 # Rules to configure and make the package.
mimas@2031 17 compile_rules()
mimas@2031 18 {
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