# HG changeset patch # User Rohit Joshi # Date 1266397244 0 # Node ID d23f01b641fd9c68685667d26e1ac8f215efb0d2 # Parent 4315a8ce2206b79303305dec209dfe295f990eb7 Add lrzip (thanks Medvedev) diff -r 4315a8ce2206 -r d23f01b641fd lrzip/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lrzip/receipt Wed Feb 17 09:00:44 2010 +0000 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="lrzip" +VERSION="0.44" +CATEGORY="utilities" +SHORT_DESC="lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy" +MAINTAINER="devel@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://ck.kolivas.org/apps/lrzip/" +WGET_URL="$WEB_SITE/$TARBALL" +BUILD_DEPENDS="lzo-dev bzip2-dev zlib-dev nasm" +TAGS="compression archive" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +}