Updated JamMin by removing patches, which were applied to the JamMin repo, and fixing some build and install errors.

This commit is contained in:
Radu Toma
2014-12-03 19:46:04 +00:00
parent 6fbe1e81cf
commit 2c7b436c60
2 changed files with 3 additions and 55 deletions

View File

@@ -6,7 +6,7 @@ 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#681e87d6d4"
SRC_URI="git+https://github.com/HaikuArchives/JamMin.git"
REVISION="2"
COPYRIGHT="2003 Guido Casiraghi"
LICENSE="MIT"
@@ -33,11 +33,10 @@ REQUIRES="
haiku >= $haikuVersion
"
PATCHES="jampatch-1.patch"
BUILD()
{
cd source
make OBJ_DIR=objects \
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
@@ -45,6 +44,6 @@ BUILD()
INSTALL()
{
mkdir -p $appsDir
cp objects/JamApp $appsDir
cp source/objects/JamApp $appsDir
addAppDeskbarSymlink $appsDir/JamApp
}