wok view lrzip/receipt @ rev 18125

Add xaos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 11 15:46:55 2015 +0200 (2015-06-11)
parents 380ffe05937a
children ff6028aa1317
line source
1 # SliTaz package receipt.
3 PACKAGE="lrzip"
4 VERSION="0.616"
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://ck.kolivas.org/apps/lrzip/"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 TAGS="compression archive"
14 DEPENDS="lzo bzlib zlib gcc-lib-base"
15 BUILD_DEPENDS="lzo-dev bzip2-dev zlib-dev nasm perl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }