automake: bump version.

This commit is contained in:
Jerome Duval
2015-11-01 20:47:17 +00:00
parent aea7dd20d9
commit 88f66934d5

View File

@@ -0,0 +1,62 @@
SUMMARY="A tool for generating 'Makefile.in' from 'Makefile.am'"
DESCRIPTION="Automake is a tool for automatically generating 'Makefile.in' \
files from 'Makefile.am' files. 'Makefile.am' is a series of 'make' macro \
definitions (with rules occasionally thrown in). The generated 'Makefile.in' \
files are compatible with the GNU Makefile standards."
HOMEPAGE="http://www.gnu.org/software/automake/"
COPYRIGHT="2013 Free Software Foundation, Inc."
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz"
CHECKSUM_SHA256="7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924"
SOURCE_DIR="automake-1.15"
ARCHITECTURES="x86_gcc2 x86 x86_64 arm"
PROVIDES="
automake = $portVersion compat >= 1.13
cmd:automake = $portVersion compat >= 1.13
cmd:automake_1.15 = $portVersion compat >= 1.15
cmd:aclocal = $portVersion compat >= 1.13
cmd:aclocal_1.15 = $portVersion compat >= 1.15
"
REQUIRES="
haiku
cmd:awk
coreutils
diffutils
cmd:m4 >= 1.4
cmd:perl >= 5.8
cmd:sh
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:autoconf >= 2.60
cmd:find
cmd:gcc
cmd:ld
cmd:make
cmd:makeinfo
cmd:perl >= 5.8
cmd:sed
"
BUILD()
{
./bootstrap.sh
PERL="/bin/env perl" runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
make install-html
}
TEST()
{
make check
}