mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 08:40:06 +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.
52 lines
1.2 KiB
Bash
52 lines
1.2 KiB
Bash
SUMMARY="Circus Linux! is a clone of the Atari 2600 game Circus Atari"
|
|
DESCRIPTION="The object is to move a teeter-totter back and forth across \
|
|
the screen to bounce clowns up into the air. When they reach the top, they \
|
|
pop rows of balloons and then fall back down."
|
|
HOMEPAGE="http://www.newbreedsoftware.com/circus-linux/"
|
|
COPYRIGHT="2000 Bill Kendrik, Jarkko Rotsten"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="ftp://ftp.tuxpaint.org/unix/x/circus-linux/src/circuslinux-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="bf9550ebd598a9e7d93a20d80ff466475122f8b023314bb1e07c31e8c608ce8a"
|
|
PATCHES="circuslinux-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all ?x86"
|
|
|
|
PROVIDES="
|
|
circuslinux = $portVersion
|
|
app:CircusLinux = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libSDL_1.2
|
|
lib:libSDL_image_1.2
|
|
lib:libSDL_mixer_1.2
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libSDL
|
|
devel:libSDL_image
|
|
devel:libSDL_mixer
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:libtoolize
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize -fci
|
|
runConfigure --omit-dirs "binDir docDir dataRootDir" \
|
|
./configure --bindir=$appsDir
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
mv $appsDir/circuslinux $appsDir/CircusLinux
|
|
addAppDeskbarSymlink $appsDir/CircusLinux
|
|
}
|