* convert all .bep files to follow shell syntax

* rename all .bep files to .recipe
This commit is contained in:
Oliver Tappe
2013-03-29 16:31:03 +00:00
parent 94cc6aaf85
commit 60aba35d64
937 changed files with 4094 additions and 2047 deletions

View File

@@ -0,0 +1,46 @@
SUMMARY="Apache Portable Runtime Library"
DESCRIPTION="The Apache Portable Runtime Library."
HOMEPAGE="http://apr.apache.org/"
SRC_URI="http://archive.apache.org/dist/apr/apr-1.4.2.tar.gz"
CHECKSUM_MD5="fc80cb54f158c2674f9eeb47a1f672cd"
REVISION="2"
STATUS_HAIKU="stable"
PROVIDES="apr = $portVersion compat >= 1
lib:libapr = $portVersion compat >= 1
lib:libapr-1 = $portVersion compat >= 1"
REQUIRES="haiku >= $haikuVersion"
BUILD_REQUIRES="cmd:aclocal
cmd:autoconf
cmd:gcc
cmd:ld
cmd:libtoolize
cmd:make"
BUILD_PREREQUIRES="haiku-devel >= $haikuVersion"
SOURCE_DIR="$portVersionedName"
BUILD()
{
libtoolize --force --copy --install
touch libtool.m4
# ./buildconf
aclocal -I build
autoconf
./configure $configureDirArgs
make
}
INSTALL()
{
make install
}
TEST()
{
cd apr-1.4.2
make test
}
LICENSE="Apache v2"
COPYRIGHT="2010 The Apache Software Foundation."