Open POSIX Testsuite: fix recipe.

There are several problems with this, still:
* We have an updated version in Haiku sources, from which changes should
be extracted and merged here.
* The Open POSIX Testsuite project is dead, and the tests have been
merged in https://github.com/linux-test-project/ltp/.
This commit is contained in:
Adrien Destugues
2002-11-12 20:25:57 +01:00
parent 674e2ee375
commit a58b7476ee

View File

@@ -1,28 +1,45 @@
SUMMARY="An open source test suite for POSIX compliance"
DESCRIPTION=" DESCRIPTION="
The Open POSIX Test Suite is a test suite for POSIX 2001 APIs, not tied to \ The Open POSIX Test Suite is a test suite for POSIX 2001 APIs, not tied to \
specific implementations. specific implementations.
" "
HOMEPAGE="http://posixtest.sourceforge.net/" HOMEPAGE="http://posixtest.sourceforge.net/"
SRC_URI="http://sourceforge.net/projects/posixtest/files/posixtest/posixtestsuite-1.5.2/posixtestsuite-1.5.2.tar.gz/download" SRC_URI="http://sourceforge.net/projects/posixtest/files/posixtest/posixtestsuite-1.5.2/posixtestsuite-1.5.2.tar.gz"
CHECKSUM_MD5="9a8e6516585c886fddc257270061b59c" CHECKSUM_SHA256="15a2185672127cba851d35ec9d538ff6148defdbb75f99c7e9c50aeba0f94757"
REVISION="1" REVISION="1"
STATUS_HAIKU="stable"
DEPEND="" ARCHITECTURES="x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
posixtestsuite = $portVersion
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel >= $haikuVersion
"
BUILD_PREREQUIRES="
cmd:find
cmd:cc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
"
SOURCE_DIR="posixtestsuite"
BUILD() BUILD()
{ {
cd posixtestsuite make $jobArgs
make
} }
INSTALL() INSTALL()
{ {
cd posixtestsuite
make install make install
} }
TEST() TEST()
{ {
cd posixtestsuite
execute.sh execute.sh
} }