wok-next annotate 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
rev   line source
al@19745 1 # SliTaz package receipt v2.
pankso@455 2
pankso@455 3 PACKAGE="tar"
al@21105 4 VERSION="1.31"
pankso@455 5 CATEGORY="utilities"
al@19745 6 SHORT_DESC="GNU tar archiving tools"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15590 8 LICENSE="GPL3"
al@19568 9 WEB_SITE="https://www.gnu.org/software/tar/"
al@21105 10 LFS="http://www.linuxfromscratch.org/lfs/view/development/chapter06/tar.html"
pankso@455 11
al@20861 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19568 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
al@21105 14 TARBALL_SHA1="ad53ec4fa815177ab8dbcaa27a42557295142f94"
al@19568 15
al@21020 16 BUILD_DEPENDS="acl-dev gettext-dev texinfo"
al@21155 17 SPLIT="$PACKAGE-lang"
al@21105 18
al@21155 19 DEPENDS_std="acl"
al@21155 20 TAGS_std="LFS archive compression"
al@19568 21
al@20436 22 compile_rules() {
al@21155 23 # keep "--bindir=/bin" to put "tar" to /bin/ istead of /usr/bin/
al@19568 24 FORCE_UNSAFE_CONFIGURE=1 \
pankso@455 25 ./configure \
al@19568 26 --bindir=/bin \
al@19568 27 $CONFIGURE_ARGS &&
al@20861 28 make &&
al@20861 29 make install &&
al@20861 30 make -C doc install-html
pankso@455 31 }