2013-05-16 16:02:52 +00:00
|
|
|
# Template build file for 'autoconf213'.
|
|
|
|
pkgname=autoconf213
|
|
|
|
version=2.13
|
2014-02-18 12:22:53 +00:00
|
|
|
revision=2
|
2014-01-01 15:10:11 +00:00
|
|
|
noarch=yes
|
2013-05-16 16:02:52 +00:00
|
|
|
wrksrc="autoconf-${version}"
|
|
|
|
hostmakedepends="perl>=0"
|
2014-01-01 15:10:11 +00:00
|
|
|
depends="gawk diffutils m4"
|
2013-05-16 16:02:52 +00:00
|
|
|
short_desc="Generates automatic source code configuration scripts (2.13 version)"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="GPL-2, GPL-3"
|
|
|
|
homepage="http://www.gnu.org/software/autoconf"
|
|
|
|
distfiles="http://ftp.gnu.org/gnu/autoconf/autoconf-$version.tar.gz"
|
|
|
|
checksum=f0611136bee505811e9ca11ca7ac188ef5323a8e2ef19cffd3edb3cf08fd791e
|
|
|
|
|
|
|
|
do_configure() {
|
2013-05-26 08:41:55 +00:00
|
|
|
./configure ${configure_args} --program-suffix='-2.13'
|
2013-05-16 16:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
# Avoid conflict with other versions.
|
|
|
|
mv ${DESTDIR}/usr/share/autoconf ${DESTDIR}/usr/share/autoconf213
|
|
|
|
sed -e 's,/usr/share/autoconf,/usr/share/autoconf213,g' -i ${DESTDIR}/usr/bin/*
|
|
|
|
}
|