mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
53 lines
915 B
Plaintext
53 lines
915 B
Plaintext
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#3a45d8f364"
|
|
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
|
|
"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/BeVexed
|
|
"
|
|
|
|
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
|
|
}
|