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

62 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="2013 Free Software Foundation, Inc."
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://ftp.gnu.org/gnu/automake/automake-$portVersion.tar.gz"
CHECKSUM_SHA256="988e32527abe052307d21c8ca000aa238b914df363a617e38f4fb89f5abf6260"
ARCHITECTURES="all"
PROVIDES="
automake = $portVersion compat >= 1.13
cmd:aclocal = $portVersion compat >= 1.13
cmd:aclocal_1.15 = $portVersion compat >= 1.15
cmd:automake = $portVersion compat >= 1.13
cmd:automake_1.15 = $portVersion compat >= 1.15
"
REQUIRES="
haiku
coreutils
diffutils
cmd:awk
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
PERL="/bin/env perl" runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}
TEST()
{
make check
}