1SUMMARY="An open source test suite for POSIX compliance"
2DESCRIPTION="
3The Open POSIX Test Suite is a test suite for POSIX 2001 APIs, not tied to \
4specific implementations.
5"
6HOMEPAGE="http://posixtest.sourceforge.net/"
7COPYRIGHT="2002-2004 Intel Corporation. All rights reserved.
8	2004, QUALCOMM Inc. All rights reserved.
9	2004-2005 Bull S.A..  All rights reserved."
10LICENSE="GNU GPL v2"
11REVISION="1"
12SOURCE_URI="http://sourceforge.net/projects/posixtest/files/posixtest/posixtestsuite-1.5.2/posixtestsuite-1.5.2.tar.gz"
13CHECKSUM_SHA256="15a2185672127cba851d35ec9d538ff6148defdbb75f99c7e9c50aeba0f94757"
14SOURCE_DIR="posixtestsuite"
15
16ARCHITECTURES="?x86_gcc2"
17SECONDARY_ARCHITECTURES="?x86"
18
19PROVIDES="
20	posixtestsuite$secondaryArchSuffix = $portVersion
21	"
22
23BUILD_REQUIRES="
24	haiku${secondaryArchSuffix}_devel
25	"
26BUILD_PREREQUIRES="
27	cmd:cc$secondaryArchSuffix
28	cmd:find
29	cmd:ld$secondaryArchSuffix
30	cmd:make
31	"
32
33BUILD()
34{
35	make $jobArgs
36}
37
38INSTALL()
39{
40	make install
41}
42
43TEST()
44{
45	execute.sh
46}
47