mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
60 lines
1.3 KiB
Bash
60 lines
1.3 KiB
Bash
SUMMARY="A retro puzzle/platform game"
|
|
DESCRIPTION="Giddy 3 is a retro-tastic platform puzzle game!
|
|
|
|
Featuring bright colourful graphics, smooth scrolling, puzzles, and an egg \
|
|
with unfeasibly large hands!
|
|
|
|
Set across 5 large scrolling levels, you play the part of Giddy, the all-round \
|
|
good egg, who has to save the world from aliens, intent on taking over the \
|
|
world with giant robot stompers!"
|
|
HOMEPAGE="http://www.retroleum.co.uk/giddy3/"
|
|
COPYRIGHT="2000 Phil Rouston
|
|
2009-2014 Peter Gordon"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="3"
|
|
SOURCE_URI="https://github.com/pete-gordon/Giddy-3/archive/v1_5.tar.gz"
|
|
CHECKSUM_SHA256="8938aa949268f0f300ff08aca246e378979169c79b3facbf020fce87c265e53f"
|
|
SOURCE_FILENAME="giddy3-v1.5.tar.gz"
|
|
SOURCE_DIR="Giddy-3-1_5"
|
|
PATCHES="giddy3-1.5.patchset"
|
|
ADDITIONAL_FILES="giddy3.rdef.in"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
giddy3 = $portVersion
|
|
app:giddy3
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libgl
|
|
lib:libsdl
|
|
lib:libsdl_mixer
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libglu
|
|
devel:libsdl
|
|
devel:libsdl_mixer
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
make PLATFORM=haiku
|
|
|
|
addResourcesToBinaries $portDir/additional-files/giddy3.rdef.in ../giddy3
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/Giddy3
|
|
cp -r giddy3 onion* hats* $appsDir/Giddy3
|
|
addAppDeskbarSymlink $appsDir/Giddy3/giddy3 "Giddy 3"
|
|
}
|