From 0d8ce154e2c27e4ee1c62484bcafc6f6f906ddeb Mon Sep 17 00:00:00 2001 From: Adrian Jelen Date: Thu, 26 Dec 2013 02:13:56 +0000 Subject: [PATCH] Add BeVexed recipe --- haiku-games/BeVexed/bevexed-1.1.recipe | 46 ++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 haiku-games/BeVexed/bevexed-1.1.recipe diff --git a/haiku-games/BeVexed/bevexed-1.1.recipe b/haiku-games/BeVexed/bevexed-1.1.recipe new file mode 100644 index 000000000..a23ae9a65 --- /dev/null +++ b/haiku-games/BeVexed/bevexed-1.1.recipe @@ -0,0 +1,46 @@ +SUMMARY="A maddeningly-addictive puzzle game." +DESCRIPTION="A maddeningly-addictive puzzle game. +The concept is simple: put the tiles in the grid on the left such that the numbers match wherever 2 tiles touch." +HOMEPAGE="https://github.com/HaikuArchives/BeVexed" +SRC_URI="git+https://github.com/HaikuArchives/BeVexed" +REVISION="1" + +LICENSE="MIT" +COPYRIGHT="2006 DarkWyrm" + +ARCHITECTURES="x86_gcc2 ?x86 ?x86_64" + +PROVIDES=" + BeVexed = $portVersion + app:BeVexed = $portVersion + " + +REQUIRES=" + haiku >= $haikuVersion + " + +BUILD_REQUIRES=" + haiku_devel >= $haikuVersion + " + +BUILD_PREREQUIRES=" + makefile_engine + cmd:gcc + cmd:make + cmd:mkdepend + " + +BUILD() +{ + cd source + make OBJ_DIR=objects \ + BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY` +} + +INSTALL() +{ + cd source + mkdir -p $appsDir + cp -a objects/BeVexed $appsDir + addAppDeskbarSymlink $appsDir/BeVexed +}