wok-next diff arj/receipt @ rev 3840
Up: tazwok (3.0)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Aug 07 12:14:51 2009 +0200 (2009-08-07) |
parents | |
children | 1914d25b57ad |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/arj/receipt Fri Aug 07 12:14:51 2009 +0200 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="arj" 1.7 +VERSION="3.10.22" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="ARJ archiver." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://$PACKAGE.sourceforge.net/" 1.13 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.14 +BUILD_DEPENDS="autoconf" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src/gnu 1.20 + autoheader 1.21 + autoconf 1.22 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.23 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.24 + cd .. 1.25 + make -k 1.26 + make DESTDIR=$PWD/_pkg install 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr 1.33 + cp -a $_pkg/usr/bin $fs/usr 1.34 + cp -a $_pkg/usr/lib $fs/usr 1.35 +} 1.36 +