wok-next view autoconf213/receipt @ rev 20714

netkit-rsh: typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 12:56:13 2018 +0300 (2018-05-27)
parents 0e7893ac206d
children f48456621a9d
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/stable/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 compile_rules() {
18 mv -v autoconf.texi autoconf213.texi
19 rm -v autoconf.info
20 ./configure \
21 --prefix=/usr \
22 --program-suffix=-2.13 &&
23 make &&
24 make install || return 1
26 install -m644 autoconf213.info $install/usr/share/info/
27 }
29 genpkg_rules() {
30 copy @std @dev
31 DEPENDS="m4 perl"
32 }