Files
haikuports/games-board/scoundrel/scoundrel-1.0.0.recipe
2026-03-10 07:26:37 +01:00

53 lines
1.4 KiB
Bash

SUMMARY="A rogue-like card game"
DESCRIPTION="Scoundrel is a rogue-like card game where every shuffle could be \
your last. The deck is your dungeon, and each room is revealed one hand at a \
time. Make strategic decisions, manage your health, and battle through an \
unpredictable gauntlet of monsters, weapons, and potions.
Each room consists of four cards drawn from the deck. Interact with three \
cards to advance - fight, heal, or equip. The fourth card carries over to \
the next room. Watch your health - if it reaches 0, your run is over.
Features native Haiku look and feel, background music, sound effects, \
local high scores, and automatic save/resume."
HOMEPAGE="https://github.com/D3codes/ScoundrelHaiku"
COPYRIGHT="2024-2026 D3codes"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/D3codes/ScoundrelHaiku/archive/refs/tags/v$portVersion.tar.gz"
CHECKSUM_SHA256="e14d389628a115ecbfd52dd75d6ee82ab0b4fbf4d243c4b9a92a9bcb593e4307"
SOURCE_DIR="ScoundrelHaiku-$portVersion"
ARCHITECTURES="all !x86_gcc2"
PROVIDES="
scoundrel = $portVersion
app:Scoundrel = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
make $jobArgs
}
INSTALL()
{
mkdir -p $appsDir/Scoundrel
cp Scoundrel $appsDir/Scoundrel/Scoundrel
cp -r data $appsDir/Scoundrel/data
addAppDeskbarSymlink $appsDir/Scoundrel/Scoundrel
}