0
0
Fork 0
haikuports/haiku-games/bemines/bemines-1.1.1.recipe

60 lines
1.6 KiB
Bash

SUMMARY="More than a near-exact clone of the classic Windows game"
DESCRIPTION="It's about time for a more than a near-exact clone of the \
classic Windows game, Minesweeper.
Controls:
- Left click: Reveal a box. Clicking on a mine will lose the game.
- Right click: Change a box to either unmarked, flagged as a mine, or a \
question mark.
- Middle click: Sonar ping which reveals all mines in a 3x3 square without \
the danger of setting them off. It comes with a 20 second cost added to your \
time. Left clicking while holding down ALT will also will do this.
- Click with both buttons: If the tile is a number and the appropriate number \
of mines around it have been flagged, it will clear all the other squares \
around the number. Of course, if you've made a mistake, you'll probably \
set off a mine. Left clicking while holding down SHIFT will also do this."
HOMEPAGE="https://github.com/HaikuArchives/BeMines"
COPYRIGHT="2009 Jon Yoder
2018-2020 Kevin Adams, Adrien Destugues, Humdinger, Raheem Idowu, Janus, \
Justin Stressman"
LICENSE="MIT"
REVISION="2"
SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="6e0ad89f0407c1897633dc6248cc6592ba9bc42173539bbcab78c16c13143511"
SOURCE_DIR="BeMines-$portVersion"
ARCHITECTURES="all"
PROVIDES="
bemines = $portVersion
app:BeMines = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
"
BUILD()
{
cd src
make $jobArgs
make bindcatalogs
}
INSTALL()
{
mkdir -p $appsDir/BeMines
cp src/BeMines $appsDir/BeMines
cp -r src/themes $appsDir/BeMines
addAppDeskbarSymlink $appsDir/BeMines/BeMines BeMines
}