SUMMARY="Build tool, replacement for make" DESCRIPTION="Jam is a small open-source build tool that can be used as a \ replacement for Make. Even though Jam is a lot simpler to use than Make, \ it is far more powerful and easy to master. Its design is sufficiently \ clear to allow any average programmer to extend it with advanced features \ at will. The main differences between Jam and Make are: - Jam uses 'Jamfiles' instead of 'Makefiles'. - Jamfiles do not normally contain toolset-specific rules or actions. They are \ thus portable among distinct compilers. - Jamfiles are a lot simpler than Makefiles to write and understand, while \ providing the same functionality, and much, much more." HOMEPAGE="http://www.perforce.com/jam/jam.html" COPYRIGHT="1993-2003 Christopher Seiwald" LICENSE="Jam" REVISION="5" srcGitRev="259af3cf06a9e75cc93903d6ff4d8cad89f94874" SOURCE_URI="https://github.com/haiku/buildtools/archive/$srcGitRev.tar.gz" SOURCE_FILENAME="$portVersionedName.tar.gz" CHECKSUM_SHA256="211cbfb355b6950b2c94952526a02e3aa16e01e042fb97826c0a28b354f35efe" SOURCE_DIR="buildtools-$srcGitRev/jam" ARCHITECTURES="x86_gcc2 x86 x86_64 arm" PROVIDES=" jam = $portVersion cmd:jam = $portVersion compat >= 2.5 " REQUIRES=" haiku " BUILD_REQUIRES=" haiku_devel " BUILD_PREREQUIRES=" cmd:gcc cmd:make cmd:ld " BUILD() { make } INSTALL() { mkdir -p "$binDir" cp bin.haikux86/jam "$binDir" mkdir -p "$docDir" cp Jam.html Jambase.html Jamfile.html README* "$docDir" }