wok diff tar/receipt @ rev 22647

updated distcc and distccmon-gui (3.1 -> 3.3.3)
author Hans-G?nter Theisgen
date Tue Jan 14 10:56:35 2020 +0100 (2020-01-14)
parents 2c8959d87a92
children 71360a13cd94
line diff
     1.1 --- a/tar/receipt	Mon Oct 29 17:34:53 2018 +0100
     1.2 +++ b/tar/receipt	Tue Jan 14 10:56:35 2020 +0100
     1.3 @@ -1,29 +1,32 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tar"
     1.7 -VERSION="1.30"
     1.8 +VERSION="1.32"
     1.9  CATEGORY="utilities"
    1.10 +TAGS="archive compression"
    1.11  SHORT_DESC="GNU tar archiving tools."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="GPL3"
    1.14 +WEB_SITE="https://www.gnu.org/software/tar/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="http://www.gnu.org/software/tar/"
    1.18 -WGET_URL="http://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
    1.19 -TAGS="archive compression"
    1.20 -HOST_ARCH="i486 arm"
    1.21 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.22  
    1.23  DEPENDS="xz"
    1.24  
    1.25 +HOST_ARCH="i486 arm"
    1.26 +
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30  	# this is needed since configure can't be run as root with out it
    1.31  	export FORCE_UNSAFE_CONFIGURE=1
    1.32 -	./configure \
    1.33 -		--prefix=/usr \
    1.34 -		--libexecdir=/usr/lib/$PACKAGE \
    1.35 -		$CONFIGURE_ARGS
    1.36 -	make
    1.37 +
    1.38 +	./configure				\
    1.39 +		--prefix=/usr			\
    1.40 +		--libexecdir=/usr/lib/$PACKAGE	\
    1.41 +		$CONFIGURE_ARGS &&
    1.42 +	make &&
    1.43  	make DESTDIR=$DESTDIR install
    1.44  }
    1.45