wok view lrzip/receipt @ rev 4948

Add lrzip (thanks Medvedev)
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 17 09:00:44 2010 +0000 (2010-02-17)
parents
children 8752c40cc534
line source
1 # SliTaz package receipt.
3 PACKAGE="lrzip"
4 VERSION="0.44"
5 CATEGORY="utilities"
6 SHORT_DESC="lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy"
7 MAINTAINER="devel@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://ck.kolivas.org/apps/lrzip/"
10 WGET_URL="$WEB_SITE/$TARBALL"
11 BUILD_DEPENDS="lzo-dev bzip2-dev zlib-dev nasm"
12 TAGS="compression archive"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }