wok-next view arj/receipt @ rev 21226

updated chocolate-doom (1.4.0 -> 3.0.0)
author Hans-G?nter Theisgen
date Tue Dec 03 16:21:36 2019 +0100 (2019-12-03)
parents b19ddba309f9
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="arj"
4 VERSION="3.10.22"
5 CATEGORY="system-tools"
6 SHORT_DESC="ARJ archiver"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://arj.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="automake"
16 compile_rules() {
17 cd $src/gnu
18 aclocal
19 autoconf
20 rm -f config.guess config.sub
21 # am=$(automake --version|head -n1|sed -r 's/.*\) (.*)/\1/')
22 cp /usr/share/automake-*/config.guess .
23 cp /usr/share/automake-*/config.sub .
25 ./configure $CONFIGURE_ARGS
26 cd ..
27 make prepare &&
28 make -j1 &&
29 make DESTDIR=$install install
30 }
32 genpkg_rules() {
33 copy @std
34 TAGS="compression archive"
35 }