wok annotate 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
rev   line source
mimas@2031 1 # SliTaz package receipt.
mimas@2031 2
mimas@2031 3 PACKAGE="lzip"
pascal@14133 4 VERSION="1.13"
mimas@2031 5 CATEGORY="utilities"
mimas@2031 6 SHORT_DESC="LZMA compressor"
mimas@2031 7 MAINTAINER="mimas@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
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"
mimas@2031 12
pascal@14133 13 DEPENDS="gcc-lib-base"
pascal@14133 14
mimas@2031 15 # Rules to configure and make the package.
mimas@2031 16 compile_rules()
mimas@2031 17 {
mimas@2031 18 cd $src
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