wok-next view tar/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 9e01bc6321ea
children 9a17d981d0f7
line source
1 # SliTaz package receipt.
3 PACKAGE="tar"
4 VERSION="1.29"
5 CATEGORY="utilities"
6 SHORT_DESC="GNU tar archiving tools."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/tar/"
10 TAGS="archive compression"
11 HOST_ARCH="i486 arm"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
16 DEPENDS="acl attr"
17 BUILD_DEPENDS="acl-dev gettext texinfo"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 FORCE_UNSAFE_CONFIGURE=1 \
23 ./configure \
24 --bindir=/bin \
25 $CONFIGURE_ARGS &&
26 make && make install &&
27 make -C doc install-html docdir=/usr/share/doc/tar-1.29
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cook_copy_folders bin libexec
34 }
36 post_remove()
37 {
38 ln -s busybox "$1/bin/tar"
39 }