wok-next view tar/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 82b613cfd1e0
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="tar"
4 VERSION="1.31"
5 CATEGORY="utilities"
6 SHORT_DESC="GNU tar archiving tools"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/tar/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/development/chapter06/tar.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 TARBALL_SHA1="ad53ec4fa815177ab8dbcaa27a42557295142f94"
16 BUILD_DEPENDS="acl-dev gettext-dev texinfo"
17 SPLIT="$PACKAGE-lang"
19 DEPENDS_std="acl"
20 TAGS_std="LFS archive compression"
22 compile_rules() {
23 # keep "--bindir=/bin" to put "tar" to /bin/ istead of /usr/bin/
24 FORCE_UNSAFE_CONFIGURE=1 \
25 ./configure \
26 --bindir=/bin \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install &&
30 make -C doc install-html
31 }