# HG changeset patch # User Hans-G?nter Theisgen # Date 1643356387 -3600 # Node ID 4310a82e5109f9c0bac4528718896f7704099cbc # Parent 4e9e2372bd7ff3edbea147fb0657e5a08e1f5b64 updated autoconf (2.69 -> 2.71) diff -r 4e9e2372bd7f -r 4310a82e5109 autoconf/receipt --- a/autoconf/receipt Thu Jan 27 17:51:18 2022 +0100 +++ b/autoconf/receipt Fri Jan 28 08:53:07 2022 +0100 @@ -1,22 +1,25 @@ # SliTaz package receipt. PACKAGE="autoconf" -VERSION="2.69" +VERSION="2.71" CATEGORY="development" -SHORT_DESC="A GNU tool for automatically configuring source code" +SHORT_DESC="A GNU tool for automatically configuring source code." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://www.gnu.org/software/autoconf/" +WEB_SITE="https://www.gnu.org/software/autoconf/" + TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" -DEPENDS="m4 perl xz gettext-tools" +DEPENDS="gettext-tools m4 perl xz" BUILD_DEPENDS="m4 perl" # Rules to compile & install the temporary toolchain. cook_tmp_toolchain() { - ./configure && make && make install + ./configure && + make && + make install } # Rules to configure and make the package. @@ -30,8 +33,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/autoconf $fs/usr/share - rm -f $fs/usr/share/autoconf/INSTALL + cook_copy_folders bin + cook_copy_folders autoconf + rm -f $fs/usr/share/autoconf/INSTALL }