wok rev 24333

updated autoconf (2.69 -> 2.71)
author Hans-G?nter Theisgen
date Fri Jan 28 08:53:07 2022 +0100 (2022-01-28)
parents 4e9e2372bd7f
children 21f65cda07b9
files autoconf/receipt
line diff
     1.1 --- a/autoconf/receipt	Thu Jan 27 17:51:18 2022 +0100
     1.2 +++ b/autoconf/receipt	Fri Jan 28 08:53:07 2022 +0100
     1.3 @@ -1,22 +1,25 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="autoconf"
     1.7 -VERSION="2.69"
     1.8 +VERSION="2.71"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="A GNU tool for automatically configuring source code"
    1.11 +SHORT_DESC="A GNU tool for automatically configuring source code."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="http://www.gnu.org/software/autoconf/"
    1.15 +WEB_SITE="https://www.gnu.org/software/autoconf/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.18  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.19  
    1.20 -DEPENDS="m4 perl xz gettext-tools"
    1.21 +DEPENDS="gettext-tools m4 perl xz"
    1.22  BUILD_DEPENDS="m4 perl"
    1.23  
    1.24  # Rules to compile & install the temporary toolchain.
    1.25  cook_tmp_toolchain()
    1.26  {
    1.27 -	./configure && make && make install
    1.28 +	./configure &&
    1.29 +	make &&
    1.30 +	make install
    1.31  }
    1.32  
    1.33  # Rules to configure and make the package.
    1.34 @@ -30,8 +33,7 @@
    1.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.36  genpkg_rules()
    1.37  {
    1.38 -	mkdir -p $fs/usr/share
    1.39 -	cp -a $install/usr/bin $fs/usr
    1.40 -	cp -a $install/usr/share/autoconf $fs/usr/share
    1.41 -	rm -f $fs/usr/share/autoconf/INSTALL
    1.42 +	cook_copy_folders	bin
    1.43 +	cook_copy_folders	autoconf
    1.44 +	rm -f					$fs/usr/share/autoconf/INSTALL
    1.45  }