wok-next view tar/receipt @ rev 20976
Follow recent changes in the Python renames
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Sep 25 17:35:51 2018 +0300 (2018-09-25) |
parents | 90a5eb560fd6 |
children | d5aab818505e |
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="pankso@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 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 }