mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 14:08:51 +02:00
64 lines
1.8 KiB
Bash
64 lines
1.8 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="http://www.artsoft.org/rocksndiamonds/"
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="2001-2013 Artsoft Entertainment"
|
|
SOURCE_URI="http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-3.3.1.2.tar.gz"
|
|
CHECKSUM_SHA256="c117c20026299c6c935bd531ef9b0dc767731f600881d12ceb80c831483755f3"
|
|
REVISION="2"
|
|
ARCHITECTURES="!x86_gcc2 x86"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
rocksndiamonds$secondaryArchSuffix = $portVersion
|
|
app:rocksndiamonds = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libsdl$secondaryArchSuffix
|
|
lib:libsdl_image$secondaryArchSuffix
|
|
lib:libsdl_mixer$secondaryArchSuffix
|
|
lib:libsdl_net$secondaryArchSuffix
|
|
# lib:libz$secondaryArchSuffix
|
|
lib:libsmpeg$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
devel:libsdl$secondaryArchSuffix
|
|
devel:libsdl_image$secondaryArchSuffix
|
|
devel:libsdl_mixer$secondaryArchSuffix
|
|
devel:libsdl_net$secondaryArchSuffix
|
|
# devel:libz$secondaryArchSuffix
|
|
devel:libsmpeg$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
PATCHES="rocksndiamonds-$portVersion.patchset"
|
|
BUILD()
|
|
{
|
|
# Parallel build doesn't work.
|
|
PLATFORM=haiku make sdl
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
destdir=$appsDir/"Rocks'n'Diamonds"
|
|
mkdir -p $destdir
|
|
cp -r rocksndiamonds sounds graphics levels music $destdir
|
|
addAppDeskbarSymlink $destdir/rocksndiamonds "Rocks'n'Diamonds"
|
|
}
|