wok-next view autoconf/receipt @ rev 21095

Forgot to remove HOST_ARCH="any"
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jan 01 04:17:55 2019 +0200 (2019-01-01)
parents e19ff076dc63
children 82b613cfd1e0
line source
1 # SliTaz package receipt v2.
3 PACKAGE="autoconf"
4 VERSION="2.69"
5 CATEGORY="development"
6 SHORT_DESC="A GNU tool for automatically configuring source code"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/autoconf/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/autoconf.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="m4 perl"
17 COOKOPTS="force-arch" # different .m4f
19 compile_rules() {
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 copy @std @dev
27 DEPENDS="perl m4"
28 TAGS="LFS"
29 }