mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 08:10:07 +02:00
42 lines
873 B
Bash
42 lines
873 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="1"
|
|
SOURCE_URI="http://github.com/matricks/bam/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="cc8596af3325ecb18ebd6ec2baee550e82cb7b2da19588f3f843b02e943a15a9"
|
|
PATCHES="bam-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="?x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
bam = $portVersion
|
|
cmd:bam = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:lua5.3
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
sh make_beos.sh
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
cp bam $binDir
|
|
}
|