wok rev 21010

updated automake (1.14.1 -> 1.16.1)
author Hans-G?nter Theisgen
date Sat Mar 09 14:17:10 2019 +0100 (2019-03-09)
parents 736fd3dc85ec
children ea56b66bde41
files automake/receipt
line diff
     1.1 --- a/automake/receipt	Sat Mar 09 13:45:19 2019 +0100
     1.2 +++ b/automake/receipt	Sat Mar 09 14:17:10 2019 +0100
     1.3 @@ -1,12 +1,13 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="automake"
     1.7 -VERSION="1.14.1"
     1.8 +VERSION="1.16.1"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="A GNU tool for automatically creating Makefiles"
    1.11 +SHORT_DESC="A GNU tool for automatically creating Makefiles."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="http://www.gnu.org/software/automake/"
    1.15 +WEB_SITE="https://www.gnu.org/software/automake/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.18  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.19  
    1.20 @@ -16,22 +17,29 @@
    1.21  # Rules to compile & install the temporary toolchain.
    1.22  cook_tmp_toolchain()
    1.23  {
    1.24 -	./configure && make && make install
    1.25 +	./configure &&
    1.26 +	make -j 1 &&
    1.27 +	make install
    1.28  }
    1.29  
    1.30  # Rules to configure and make the package.
    1.31  compile_rules()
    1.32  {
    1.33  	./configure $CONFIGURE_ARGS &&
    1.34 -	make &&
    1.35 +	make -j 1 &&
    1.36  	make install
    1.37  }
    1.38  
    1.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.40  genpkg_rules()
    1.41  {
    1.42 -	cp -a $install/* $fs
    1.43 -	ln -sf aclocal-${VERSION%.*} $fs/usr/bin/aclocal
    1.44 -	ln -sf automake-${VERSION%.*} $fs/usr/bin/automake
    1.45 -	rm -rf $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/man
    1.46 +	cp -a $install/*		$fs
    1.47 +
    1.48 +	ln -sf aclocal-${VERSION%.*}	$fs/usr/bin/aclocal
    1.49 +	ln -sf automake-${VERSION%.*}	$fs/usr/bin/automake
    1.50 +
    1.51 +	rm -rf				\
    1.52 +		$fs/usr/share/doc	\
    1.53 +		$fs/usr/share/info	\
    1.54 +		$fs/usr/share/man
    1.55  }