# HG changeset patch # User Pascal Bellard # Date 1239999535 -7200 # Node ID c9c0ed1272f2c9e0d7a7936767f9cf9a65728879 # Parent 93cdea384a76e92e6b9d21f5b4dc2e5330fb713f Add arj diff -r 93cdea384a76 -r c9c0ed1272f2 arj/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/arj/receipt Fri Apr 17 22:18:55 2009 +0200 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="arj" +VERSION="3.10.22" +CATEGORY="system-tools" +SHORT_DESC="ARJ archiver." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://$PACKAGE.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +BUILD_DEPENDS="autoconf" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src/gnu + autoheader + autoconf + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS + cd .. + make -k + 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 + cp -a $_pkg/usr/lib $fs/usr +} +