wok-next view autoconf213/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="autoconf213"
4 VERSION="2.13"
5 CATEGORY="development"
6 SHORT_DESC="A GNU tool for automatically configuring source code"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.gnu.org/software/autoconf/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/autoconf213.html"
11 HOST_ARCH="any"
13 TARBALL="autoconf-$VERSION.tar.gz"
14 WGET_URL="http://ftpmirror.gnu.org/autoconf/$TARBALL"
16 BUILD_DEPENDS="m4 perl sed texinfo"
18 COOKOPTS="force-arch" # different .m4f
20 compile_rules() {
21 mv -v autoconf.texi autoconf213.texi
22 rm -v autoconf.info
23 ./configure \
24 --prefix=/usr \
25 --program-suffix=-2.13 &&
26 make &&
27 make install || return 1
29 install -m644 autoconf213.info $install/usr/share/info/
30 }
32 genpkg_rules() {
33 copy @std @dev
34 DEPENDS="m4 perl"
35 }