wok view lrzip/receipt @ rev 13753

xpad: try to fix build
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 03 00:29:09 2013 +0000 (2013-01-03)
parents b7319995b37e
children 8160d30bae63
line source
1 # SliTaz package receipt.
3 PACKAGE="lrzip"
4 VERSION="0.608"
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 TAGS="compression archive"
13 DEPENDS="lzo bzlib zlib gcc-lib-base"
14 BUILD_DEPENDS="lzo-dev bzip2-dev zlib-dev nasm perl"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }