0
0
Fork 0
haikuports/sys-devel/automake/automake-1.11.1.recipe

58 lines
1.2 KiB
Bash

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="2009 Free Software Foundation, Inc."
LICENSE="GNU GPL v2"
REVISION="5"
SOURCE_URI="http://ftp.gnu.org/gnu/automake/automake-1.11.1.tar.gz"
CHECKSUM_SHA256="b7b37c0c0f09a286cf55cad408d74aef97774d73d744c88c396ff7957045d4cb"
ARCHITECTURES="x86_gcc2 ?x86"
PROVIDES="
automake = $portVersion compat >= 1.11
cmd:aclocal = $portVersion compat >= 1.11
cmd:aclocal_1.11 = $portVersion compat >= 1.11
cmd:automake = $portVersion compat >= 1.11
cmd:automake_1.11 = $portVersion compat >= 1.11
"
REQUIRES="
haiku
coreutils
diffutils
cmd:awk
cmd:m4 >= 1.4
cmd:perl >= 5.8
cmd:sh
"
BUILD_REQUIRES="
"
BUILD_PREREQUIRES="
haiku_devel
cmd:autoconf >= 2.60
cmd:make
cmd:perl >= 5.8
cmd:sed
"
BUILD()
{
PERL="/bin/env perl" ./configure $configureDirArgs
make -j$jobs
}
INSTALL()
{
make install
}
TEST()
{
make check
}