wok-next view tar/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 523cce42deab
children 82b613cfd1e0
line source
1 # SliTaz package receipt v2.
3 PACKAGE="tar"
4 VERSION="1.30"
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/stable/chapter06/tar.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="acl-dev gettext-dev texinfo"
17 compile_rules() {
18 FORCE_UNSAFE_CONFIGURE=1 \
19 ./configure \
20 --bindir=/bin \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install &&
24 make -C doc install-html
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="acl"
30 TAGS="LFS archive compression"
31 }