wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="lzip"
4 VERSION="1.16"
5 CATEGORY="utilities"
6 SHORT_DESC="LZMA compressor"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.nongnu.org/lzip/lzip.html"
11 WGET_URL="http://download.savannah.gnu.org/releases/lzip/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="gcc-lib-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 # cp $src/lzdiff $fs/usr/bin
30 # cp $src/lzgrep $fs/usr/bin
31 }