wok annotate autoconf/receipt @ 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 c77075eb1142
children 21f65cda07b9
rev   line source
pankso@15 1 # SliTaz package receipt.
pankso@15 2
pankso@15 3 PACKAGE="autoconf"
Hans-G?nter@24333 4 VERSION="2.71"
pankso@200 5 CATEGORY="development"
Hans-G?nter@24333 6 SHORT_DESC="A GNU tool for automatically configuring source code."
pankso@15 7 MAINTAINER="pankso@slitaz.org"
pascal@15001 8 LICENSE="GPL2"
Hans-G?nter@24333 9 WEB_SITE="https://www.gnu.org/software/autoconf/"
Hans-G?nter@24333 10
al@14604 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@15 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@15 13
Hans-G?nter@24333 14 DEPENDS="gettext-tools m4 perl xz"
slaxemulator@10277 15 BUILD_DEPENDS="m4 perl"
slaxemulator@10277 16
al@14604 17 # Rules to compile & install the temporary toolchain.
slaxemulator@10407 18 cook_tmp_toolchain()
slaxemulator@10407 19 {
Hans-G?nter@24333 20 ./configure &&
Hans-G?nter@24333 21 make &&
Hans-G?nter@24333 22 make install
slaxemulator@10407 23 }
slaxemulator@10407 24
pankso@15 25 # Rules to configure and make the package.
pankso@15 26 compile_rules()
pankso@15 27 {
slaxemulator@10277 28 ./configure $CONFIGURE_ARGS &&
al@14604 29 make &&
al@14604 30 make install
pankso@15 31 }
pankso@15 32
pankso@15 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@15 34 genpkg_rules()
pankso@15 35 {
Hans-G?nter@24333 36 cook_copy_folders bin
Hans-G?nter@24333 37 cook_copy_folders autoconf
Hans-G?nter@24333 38 rm -f $fs/usr/share/autoconf/INSTALL
pankso@15 39 }