29 lines
864 B
Text
29 lines
864 B
Text
# Template build file for 'autoconf213'.
|
|
pkgname=autoconf213
|
|
version=2.13
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="autoconf-${version}"
|
|
hostmakedepends="perl>=0"
|
|
depends="gawk diffutils m4"
|
|
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() {
|
|
./configure ${configure_args} --program-suffix='-2.13'
|
|
}
|
|
|
|
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/*
|
|
}
|