Files
haikuports/app-benchmarks/ltp/ltp-20140422.recipe

55 lines
1.3 KiB
Bash

SUMMARY="A testsuite for the Linux kernel"
DESCRIPTION="The Linux Test Project is a joint project started by SGI, \
developed and maintained by IBM, Cisco, Fujitsu, SUSE, Red Hat and others, \
that has a goal to deliver test suites to the open source community that \
validate the reliability, robustness, and stability of Linux. The LTP \
testsuite contains a collection of tools for testing the Linux kernel and \
related features."
HOMEPAGE="http://linux-test-project.github.io/"
COPYRIGHT="2002-2004 Intel Corporation
2004 QUALCOMM Inc.
2004-2005 Bull S.A."
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://github.com/linux-test-project/ltp/archive/20140422.tar.gz"
CHECKSUM_SHA256="0356ba208813efb3d9be6a530a9b56688281b6ac9d80ba901920ec07cf250f2e"
ARCHITECTURES="!x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
ltp = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:automake
cmd:autoconf
cmd:find
cmd:cc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
"
BUILD()
{
make autotools
runConfigure ./configure
make all $jobArgs CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS" CXXFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS" LDFLAGS="-lposix_error_mapper"
}
INSTALL()
{
make install
}
TEST()
{
$prefix/ltp/runltp
}