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

63 lines
1.3 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="2012 Free Software Foundation, Inc."
LICENSE="GNU GPL v2"
REVISION="4"
SOURCE_URI="http://ftp.gnu.org/gnu/automake/automake-1.12.2.tar.gz"
CHECKSUM_SHA256="b2eef742f42730831d1af2fe0e5b954e2b60773e2e9922ba6280cdd0ab4a5d00"
ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
automake = $portVersion compat >= 1.12
cmd:aclocal = $portVersion compat >= 1.12
cmd:aclocal_1.12 = $portVersion compat >= 1.12
cmd:automake = $portVersion compat >= 1.12
cmd:automake_1.12 = $portVersion compat >= 1.12
"
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: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
}