wok view lzip/receipt @ rev 16007

Add go mode for emacs (1.2.1)
author Dominique Corbex <domcox@slitaz.org>
date Tue Mar 04 13:27:14 2014 +0100 (2014-03-04)
parents 60895beeccbb
children 05a0cbbb07b4
line source
1 # SliTaz package receipt.
3 PACKAGE="lzip"
4 VERSION="1.13"
5 CATEGORY="utilities"
6 SHORT_DESC="LZMA compressor"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="GPL3"
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 cd $src
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 }