mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
SUMMARY="A tile puzzle game for Haiku"
|
|
DESCRIPTION="HexVexed is a maddening addictive and easy to play puzzle game. \
|
|
Arrange hexagonal tiles into a grid so that the numbers and colors match \
|
|
where they touch. This game is a variation based on DarkWyrm's BeVexed, but instead \
|
|
of squares, the tiles are hexagon shaped. It's 1.5x the fun!"
|
|
HOMEPAGE="https://bitbucket.org/scottmc/hexvexed"
|
|
COPYRIGHT="2009-2017 Scott McCreary"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="https://bitbucket.org/scottmc/hexvexed/get/1.0.0-Beta.zip"
|
|
CHECKSUM_SHA256="d6f9509d6fed6fc0967ec2e095c3874dbe01905395592bfa68bffa2a58341299"
|
|
SOURCE_DIR="scottmc-hexvexed-b8a523a7bf04"
|
|
PATCHES="hexvexed-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
hexvexed = $portVersion
|
|
app:HexVexed = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:g++
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
make $jobArgs OBJ_DIR=objects bindcatalogs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -d -m 755 $appsDir $dataDir/HexVexed/backgrounds
|
|
install -t $appsDir objects/HexVexed
|
|
addAppDeskbarSymlink $appsDir/HexVexed
|
|
}
|