mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
69 lines
1.9 KiB
Bash
69 lines
1.9 KiB
Bash
SUMMARY="A space shooter in 3D 'a la Wing Commander'"
|
|
DESCRIPTION="Year 8002. System OOLRO 3, where the oldest and mos powerful
|
|
empire ever exists : The KROSSO empire, which consists of thousands of
|
|
colonies. The celebrations of the eighth millenium have just ended and the
|
|
good days seem to be over. A few cases of an unknown sickness have been found.
|
|
Rumors are spreading of the possibility of a mind disease.
|
|
|
|
No Gravity invites you to a fantastic and futuristic universe made of five
|
|
intergalactic worlds. An arcade type game with great playability, where it is
|
|
easy to plunge into space battles against spacefighters, space stations and
|
|
more!
|
|
|
|
Fifty-five hard hitting missions plus ten training exercises will help you to
|
|
enter this real time textured 3D environment. Missions set not only in deep
|
|
space, but also inside enemy structures will have you patrolling high risk
|
|
sectors, on reconnaissance in enemy space, escorting friendly ships or
|
|
defending your space stations and even sneaking in to sabotage enemy weapons."
|
|
HOMEPAGE="http://www.nogravitythegame.com/"
|
|
COPYRIGHT="1996-2006 Realtech"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://master.dl.sourceforge.net/project/nogravity/Source%20Files/$portVersion/rt-nogravity-src.zip"
|
|
SOURCE_DIR=""
|
|
CHECKSUM_SHA256="7af4412e5da8ccec62f4df9288f2f9d30884388285e6e645aef9c033d7f0694a"
|
|
PATCHES="nogravity-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="?all !x86_gcc2"
|
|
|
|
PROVIDES="
|
|
nogravity = $portVersion
|
|
app:nogravity = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libgl
|
|
lib:libogg
|
|
lib:libpng16
|
|
lib:libvorbis
|
|
lib:libz
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libgl
|
|
devel:libpng16
|
|
devel:libvorbis
|
|
devel:libz
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:cmake
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/nogravity
|
|
cp -a build/nogravity $appsDir/nogravity/No\ Gravity
|
|
addAppDeskbarSymlink $appsDir/nogravity/No\ Gravity
|
|
}
|