wok view lrzip/receipt @ rev 23005

libassuan: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 02 18:45:06 2020 +0100 (2020-03-02)
parents e7f6a9ed326c
children f8a963794d31
line source
1 # SliTaz package receipt.
3 PACKAGE="lrzip"
4 VERSION="0.631"
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 ./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 }