wok-next view tar/receipt @ rev 20427

Up cookutils (1024), tazpkg (957)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 24 12:19:58 2018 +0200 (2018-01-24)
parents 96871f3890f0
children 90a5eb560fd6
line source
1 # SliTaz package receipt v2.
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 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="acl-dev gettext texinfo"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 FORCE_UNSAFE_CONFIGURE=1 \
21 ./configure \
22 --bindir=/bin \
23 $CONFIGURE_ARGS &&
24 make && make install &&
25 make -C doc install-html docdir=/usr/share/doc/tar-$VERSION
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 copy @std
32 DEPENDS="acl attr"
33 TAGS="archive compression"
34 }