Files
haikuports/sys-devel/autoconf/autoconf-2.69.recipe
Jonathan Schleifer d6d0f5b613 autoconf: Add checksums
2014-03-25 21:59:10 +01:00

79 lines
1.8 KiB
Plaintext

SUMMARY="A tool for automatically configuring source code"
DESCRIPTION="
GNU Autoconf is a tool for configuring source code and makefiles. Using \
autoconf, programmers can create portable and configurable packages, because \
the person building the package is allowed to specify various configuration \
options.
"
HOMEPAGE="http://www.gnu.org/software/autoconf/"
COPYRIGHT="1992-2012 Free Software Foundation, Inc."
LICENSE="
GNU GPL v2
GNU GPL v3
"
SRC_URI="http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz"
CHECKSUM_SIZE="1927468"
CHECKSUM_MD5="82d05e03b93e45f5a39b828dc9c6c29b"
CHECKSUM_RMD160="7b7d711535827826f32f5847095233e1e9925a29"
CHECKSUM_SHA512="e34c7818bcde14d2cb13cdd293ed17d70740d4d1fd7c67a07b415491ef85d42f450d4fe5f8f80cc330bf75c40a62774c51a4336e06e8da07a4cbc49922d975ee"
REVISION="5"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PATCHES='autoconf-2.69.patchset'
PROVIDES="
autoconf = $portVersion compat >= 2.60
cmd:autoconf = $portVersion compat >= 2.60
cmd:autoheader = $portVersion compat >= 2.60
cmd:autom4te = $portVersion compat >= 2.60
cmd:autoreconf = $portVersion compat >= 2.60
cmd:autoscan = $portVersion compat >= 2.60
cmd:autoupdate = $portVersion compat >= 2.60
cmd:ifnames = $portVersion compat >= 2.60
"
REQUIRES="
haiku >= $haikuVersion
cmd:awk
coreutils
diffutils
cmd:m4 >= 1.4
cmd:perl >= 5
cmd:sh
"
BUILD_REQUIRES="
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:automake >= 1.13.1
cmd:autoreconf >= 2.60
cmd:make
cmd:makeinfo
cmd:sed
"
BUILD_PACKAGE_ACTIVATION_PHASE=INSTALL
BUILD()
{
autoreconf
# make sure that the build system doesn't try to update the manpages,
# as that requires help2man, which isn't available
touch man/*.1
PERL="/bin/env perl" M4="m4" SED="sed" \
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
make install-html
}
TEST()
{
make check
}