wok-next view tar/receipt @ rev 20303

gnustep-back: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 10 11:17:33 2017 +0100 (2017-11-10)
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 }