wok view lzip/receipt @ rev 19075

Add adwaita-icon-theme
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Apr 24 14:03:26 2016 +0300 (2016-04-24)
parents 2b9f96603415
children d7f8436a2f34
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"
13 DEPENDS="gcc-lib-base"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 # cp $src/lzdiff $fs/usr/bin
29 # cp $src/lzgrep $fs/usr/bin
30 }