wok-next view autoconf/receipt @ rev 21094

Apply "force-arch" for selected dev packages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 31 17:23:40 2018 +0200 (2018-12-31)
parents 0cbe4b1f2230
children ac50637642b7
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"
11 HOST_ARCH="any"
13 TARBALL="$PACKAGE-$VERSION.tar.xz"
14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
16 BUILD_DEPENDS="m4 perl"
18 COOKOPTS="force-arch" # different .m4f
20 compile_rules() {
21 ./configure $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 copy @std @dev
28 DEPENDS="perl m4"
29 TAGS="LFS"
30 }