wok-next view autoconf213/receipt @ rev 21719

gtk3: added build dependency libxtst
author Hans-G?nter Theisgen
date Tue Aug 04 17:36:05 2020 +0100 (2020-08-04)
parents e19ff076dc63
children
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"
12 TARBALL="autoconf-$VERSION.tar.gz"
13 WGET_URL="http://ftpmirror.gnu.org/autoconf/$TARBALL"
15 BUILD_DEPENDS="m4 perl sed texinfo"
17 COOKOPTS="force-arch" # different .m4f
19 compile_rules() {
20 mv -v autoconf.texi autoconf213.texi
21 rm -v autoconf.info
22 ./configure \
23 --prefix=/usr \
24 --program-suffix=-2.13 &&
25 make &&
26 make install || return 1
28 install -m644 autoconf213.info $install/usr/share/info/
29 }
31 genpkg_rules() {
32 copy @std @dev
33 DEPENDS="m4 perl"
34 }