mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
and: * befar Remove unneeded $secondaryArchSuffix Use g++ * mirrormagic Remove unneeded $secondaryArchSuffix * slime_volley Replaced slime_volley with slimevolley in PROVIDES Add lib:libsdl_net in REQUIRES * super_transball Remove unneeded $secondaryArchSuffix Replaced super_transball with stransball2 in PROVIDES
59 lines
1.6 KiB
Bash
59 lines
1.6 KiB
Bash
SUMMARY="The sequel of Transball and Transball 2"
|
|
DESCRIPTION="Super Transball 2 is inspired by 'thrust' type of games (and \
|
|
especially by ZARA THRUSTA for the Amiga 500).
|
|
The goal of each level is to find the 'Sphere', capture it and carry it to \
|
|
the upper part of the level. The main obstacle is the gravity that impulses \
|
|
you towards the ground. Other obstacles like cannons, tanks, doors, etc. \
|
|
will try to make your journey difficult as well..."
|
|
HOMEPAGE="http://www2.braingames.getput.com/stransball2/default.asp"
|
|
COPYRIGHT="2003-2005 Brain Games"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="http://www2.braingames.getput.com/stransball2/downloads/stransball2-v15-windows.zip"
|
|
CHECKSUM_SHA256="644cf89c8b7084abe0451ff433db25b41e43da77d5d92edad8253baf48b018db"
|
|
SOURCE_DIR="stransball2"
|
|
PATCHES="super_transball-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
PROVIDES="
|
|
stransball2 = $portVersion
|
|
app:stransball2 = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libsdl$secondaryArchSuffix
|
|
lib:libSDL_image$secondaryArchSuffix
|
|
lib:libSDL_mixer$secondaryArchSuffix
|
|
lib:libSDL_sound$secondaryArchSuffix
|
|
lib:libSGE$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libsdl$secondaryArchSuffix
|
|
devel:libSDL_image$secondaryArchSuffix
|
|
devel:libSDL_mixer$secondaryArchSuffix
|
|
devel:libSDL_sound$secondaryArchSuffix
|
|
devel:libSGE$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd sources
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
installDir=$appsDir/"Super Transball 2"
|
|
mkdir -p "$installDir"
|
|
cp -r stransball2 demos graphics maps sound "$installDir"
|
|
addAppDeskbarSymlink "$installDir/stransball2" "Super Transball 2"
|
|
}
|