wok-next view autoconf213/receipt @ rev 21075

xorg-cf-files: typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 21 01:46:05 2018 +0200 (2018-12-21)
parents f48456621a9d
children e19ff076dc63
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 compile_rules() {
19 mv -v autoconf.texi autoconf213.texi
20 rm -v autoconf.info
21 ./configure \
22 --prefix=/usr \
23 --program-suffix=-2.13 &&
24 make &&
25 make install || return 1
27 install -m644 autoconf213.info $install/usr/share/info/
28 }
30 genpkg_rules() {
31 copy @std @dev
32 DEPENDS="m4 perl"
33 }