wok-next view arj/receipt @ rev 19715

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents 11b5e93cb5f2
children b19ddba309f9
line source
1 # SliTaz package receipt.
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/"
10 TAGS="compression archive"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="automake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/gnu
21 aclocal
22 autoconf
23 rm -f config.guess config.sub
24 am="$(automake --version|head -n1|sed -r 's/.*\) (.*)/\1/')"
25 cp /usr/share/automake-"$am"/config.guess .
26 cp /usr/share/automake-"$am"/config.sub .
28 ./configure $CONFIGURE_ARGS
29 cd ..
30 make prepare &&
31 make -j 1 &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 copy @std
39 }