1SUMMARY="The Jamfile Administrator"
2DESCRIPTION="
3The JamMin manages jamfiles, because they are most important to the user, \
4as they declare the targets that should be built. Jamfiles are also \
5used for organizing targets - each Jamfile is a separate project that can \
6be built independently from the other projects."
7HOMEPAGE="https://github.com/HaikuArchives/JamMin"
8COPYRIGHT="2003 Guido Casiraghi"
9LICENSE="MIT"
10REVISION="3"
11srcGitRev="85ce20ccc0da007443cc489f65b26b75c876d442"
12SOURCE_URI="https://github.com/HaikuArchives/JamMin/archive/85ce20ccc0da007443cc489f65b26b75c876d442.tar.gz"
13CHECKSUM_SHA256="b3464c6372c342ff45c2e3134cc25e1a0209a8318a03f6e8e851ec8e5699e9e0"
14SOURCE_DIR="JamMin-$srcGitRev"
15
16ARCHITECTURES="!all x86_gcc2"
17
18PROVIDES="
19	jammin = $portVersion
20	app:JamMin = $portVersion
21	"
22REQUIRES="
23	haiku
24	"
25
26BUILD_REQUIRES="
27	haiku_devel
28	"
29BUILD_PREREQUIRES="
30	makefile_engine
31	cmd:gcc
32	cmd:make
33	"
34
35BUILD()
36{
37	cd source
38	make OBJ_DIR=objects \
39		BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
40}
41
42INSTALL()
43{
44	mkdir -p $appsDir
45	cp source/objects/JamApp $appsDir
46	addAppDeskbarSymlink $appsDir/JamApp
47}
48