Files
haikuports/haiku-apps/jammin/jammin-0.1.0.recipe
Oliver Tappe 52b344b97b Drop references to $haikuVersion.
* Referring the current haiku version explicitly is not needed, since
  the RequiresUpdater takes care of setting the version of Haiku used
  for building a package.
2014-12-14 23:08:52 +01:00

50 lines
966 B
Plaintext

SUMMARY="The Jamfile Administrator"
DESCRIPTION="
The JamMin manages your jamfiles. Jamfiles are the thing that is most \
important to the user, bacause they declare the targets that should be built. \
Jamfiles are also used for organizing targets— each Jamfile is a separate \
project that can be built independently from the other projects.
"
HOMEPAGE="https://github.com/HaikuArchives/JamMin"
SRC_URI="git+https://github.com/HaikuArchives/JamMin.git#85ce20ccc0"
REVISION="3"
COPYRIGHT="2003 Guido Casiraghi"
LICENSE="MIT"
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
PROVIDES="
jammin = $portVersion
app:JamMin = $portVersion
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
cmd:mkdepend
"
REQUIRES="
haiku
"
BUILD()
{
cd source
make OBJ_DIR=objects \
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
mkdir -p $appsDir
cp source/objects/JamApp $appsDir
addAppDeskbarSymlink $appsDir/JamApp
}