mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
79 lines
2.3 KiB
Bash
79 lines
2.3 KiB
Bash
SUMMARY="Arcade style game in the style of Boulder Dash"
|
|
DESCRIPTION="
|
|
- network multiplayer games (upto 4 players)
|
|
- local multiplayer games (upto 4 players)
|
|
- soft scrolling with 50 frames per second
|
|
- freely customizable keyboard and joystick support
|
|
- stereo sound effects and music
|
|
- music modules and fullscreen in SDL version
|
|
- contains levels to play Boulder Dash, Emerald Mine and Sokoban
|
|
- lots of additional levels available (over 10.000)"
|
|
HOMEPAGE="https://www.artsoft.org/rocksndiamonds/"
|
|
COPYRIGHT="2001-2018 Artsoft Entertainment"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="e24c6d4db9571d02207d1944e46e2d68695c0e7f001bc8794dcd20f40a3515cc"
|
|
ADDITIONAL_FILES="rocksndiamonds.rdef.in"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
rocksndiamonds$secondaryArchSuffix = $portVersion
|
|
app:"Rocks'n'Diamonds" = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libsdl$secondaryArchSuffix
|
|
lib:libsdl_image$secondaryArchSuffix
|
|
lib:libsdl_mixer$secondaryArchSuffix
|
|
lib:libsdl_net_1.2$secondaryArchSuffix
|
|
lib:libsmpeg$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libsdl$secondaryArchSuffix
|
|
devel:libsdl_image$secondaryArchSuffix
|
|
devel:libsdl_mixer$secondaryArchSuffix
|
|
devel:libsdl_net$secondaryArchSuffix
|
|
devel:libsmpeg$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make #RW_GAME_DIR=$settingsDir/rocksndiamonds
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
installDir=$appsDir/"Rocks'n'Diamonds"
|
|
mkdir -p $installDir
|
|
cp -r rocksndiamonds docs sounds graphics levels music $installDir
|
|
cp ChangeLog CREDITS $installDir
|
|
|
|
local MAJOR="`echo "$portVersion" | cut -d. -f1`"
|
|
local MIDDLE="`echo "$portVersion" | cut -d. -f2`"
|
|
local MINOR="`echo "$portVersion" | cut -d. -f3`"
|
|
local INTERNAL="`echo "$portVersion" | cut -d. -f4`"
|
|
sed \
|
|
-e "s|@MAJOR@|$MAJOR|" \
|
|
-e "s|@MIDDLE@|$MIDDLE|" \
|
|
-e "s|@MINOR@|$MINOR|" \
|
|
-e "s|@INTERNAL@|$INTERNAL|" \
|
|
$portDir/additional-files/rocksndiamonds.rdef.in > rocksndiamonds.rdef
|
|
|
|
addResourcesToBinaries rocksndiamonds.rdef \
|
|
$installDir/rocksndiamonds
|
|
|
|
mv $installDir/rocksndiamonds $installDir/"Rocks'n'Diamonds"
|
|
|
|
addAppDeskbarSymlink $installDir/"Rocks'n'Diamonds"
|
|
}
|