wok-next annotate 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
rev   line source
pascal@2643 1 # SliTaz package receipt.
pascal@2643 2
pascal@2643 3 PACKAGE="arj"
pascal@2643 4 VERSION="3.10.22"
pascal@2643 5 CATEGORY="system-tools"
al@19715 6 SHORT_DESC="ARJ archiver"
pascal@2643 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15379 8 LICENSE="GPL2"
al@19275 9 WEB_SITE="http://arj.sourceforge.net/"
al@19715 10 TAGS="compression archive"
al@19715 11
pascal@2643 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2643 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15379 14
al@19715 15 BUILD_DEPENDS="automake"
pascal@2643 16
pascal@2643 17 # Rules to configure and make the package.
pascal@2643 18 compile_rules()
pascal@2643 19 {
pascal@2643 20 cd $src/gnu
al@19715 21 aclocal
pascal@2643 22 autoconf
al@19715 23 rm -f config.guess config.sub
al@19715 24 am="$(automake --version|head -n1|sed -r 's/.*\) (.*)/\1/')"
al@19715 25 cp /usr/share/automake-"$am"/config.guess .
al@19715 26 cp /usr/share/automake-"$am"/config.sub .
al@19715 27
al@19715 28 ./configure $CONFIGURE_ARGS
pascal@2643 29 cd ..
al@19715 30 make prepare &&
pascal@15588 31 make -j 1 &&
pascal@15379 32 make DESTDIR=$DESTDIR install
pascal@2643 33 }
pascal@2643 34
pascal@2643 35 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2643 36 genpkg_rules()
pascal@2643 37 {
al@19715 38 copy @std
pascal@2643 39 }