mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
37 lines
846 B
Bash
37 lines
846 B
Bash
SUMMARY="A build system for Haiku applications based on Jam"
|
|
DESCRIPTION="Build Haiku applications, add-ons, drivers and screensavers easily using Jam.
|
|
|
|
Jam is a replacement for Make with a focus on generic and reusable rules."
|
|
HOMEPAGE="https://github.com/haiku/jamfile-engine"
|
|
COPYRIGHT="2002-2010 Ryan Leavengood
|
|
2011 Peter Poláčik
|
|
2013 Siarzhuk Zharski
|
|
2021-2022 Adrien Destugues"
|
|
LICENSE="MIT"
|
|
SOURCE_URI="https://github.com/haiku/jamfile-engine/archive/refs/tags/v${portVersion}.tar.gz"
|
|
SOURCE_DIR="jamfile-engine-${portVersion}"
|
|
CHECKSUM_SHA256="39ede2d9bf6f3f3859fae8896ee1bc2838a16dcc7a53fcd63d01e6b7f1d6ab9c"
|
|
REVISION="3"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
jamfile_engine = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $developDir/etc
|
|
|
|
cp Jamfile-engine $developDir/etc
|
|
cp Jamfile $developDir/etc
|
|
}
|