wok view lzip/receipt @ rev 20180

Update some compressors
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 29 16:42:42 2018 +0100 (2018-01-29)
parents d7f8436a2f34
children 1cc8dfef2917
line source
1 # SliTaz package receipt.
3 PACKAGE="lzip"
4 VERSION="1.19"
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 }