wok-next view tar/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 9a17d981d0f7
children 523cce42deab
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 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/tar.html"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
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 && make install &&
23 make -C doc install-html docdir=/usr/share/doc/tar-$VERSION
24 }
26 genpkg_rules() {
27 copy @std
28 DEPENDS="acl attr"
29 TAGS="LFS archive compression"
30 }