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