mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
39 lines
909 B
Bash
39 lines
909 B
Bash
SUMMARY="A fast and flexible build system"
|
|
DESCRIPTION="Bam uses Lua to describe the build process. It's takes its \
|
|
inspiration for the script files from scons. While scons focuses on being \
|
|
100% correct when building, bam makes a few sacrifices to acquire fast. \
|
|
full and incremental build times."
|
|
HOMEPAGE="http://matricks.github.io/bam/"
|
|
COPYRIGHT="2009 Magnus Auvinen"
|
|
LICENSE="Zlib"
|
|
REVISION="2"
|
|
SOURCE_URI="http://github.com/downloads/matricks/bam/bam-0.4.0.tar.gz"
|
|
CHECKSUM_SHA256="5e4e4920b4d265da582f66774e9b1ec8ddfbe75ddc028fba86c12f686ea18db3"
|
|
PATCHES="bam-0.4.0.patch"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
bam = $portVersion
|
|
cmd:bam$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
cmd:lua
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:gcc$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
sh make_beos.sh
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
cp bam $binDir
|
|
}
|