wok-6.x annotate lrzip/receipt @ rev 5861
busybox: fix insmod
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jul 19 16:23:07 2010 +0200 (2010-07-19) |
parents | 3e599985638d |
children | e48321c421a2 |
rev | line source |
---|---|
jozee@4948 | 1 # SliTaz package receipt. |
jozee@4948 | 2 |
jozee@4948 | 3 PACKAGE="lrzip" |
devl547@5229 | 4 VERSION="0.45" |
jozee@4948 | 5 CATEGORY="utilities" |
jozee@4948 | 6 SHORT_DESC="lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy" |
jozee@4948 | 7 MAINTAINER="devel@slitaz.org" |
jozee@4948 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
jozee@4948 | 9 WEB_SITE="http://ck.kolivas.org/apps/lrzip/" |
jozee@4948 | 10 WGET_URL="$WEB_SITE/$TARBALL" |
pascal@5030 | 11 DEPENDS="lzo bzlib zlib gcc-lib-base" |
jozee@4948 | 12 BUILD_DEPENDS="lzo-dev bzip2-dev zlib-dev nasm" |
jozee@4948 | 13 TAGS="compression archive" |
jozee@4948 | 14 |
jozee@4948 | 15 # Rules to configure and make the package. |
jozee@4948 | 16 compile_rules() |
jozee@4948 | 17 { |
jozee@4948 | 18 cd $src |
jozee@4948 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
jozee@4948 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS && |
jozee@4948 | 21 make && |
jozee@4948 | 22 make DESTDIR=$PWD/_pkg install |
jozee@4948 | 23 } |
jozee@4948 | 24 |
jozee@4948 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@4948 | 26 genpkg_rules() |
jozee@4948 | 27 { |
jozee@4948 | 28 mkdir -p $fs/usr |
jozee@4948 | 29 cp -a $_pkg/usr/bin $fs/usr |
jozee@4948 | 30 } |