mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* flare, freedroidRPG Don't start with the app name, in the _data section too... Re-order blocks * help2man SUMMARY must not end with "." Re-ordered blocks * html_parser, xml_parser Corrected license Re-ordered blocks * jq Corrected copy&paste mishap, I guess Re-ordered blocks * librevenge Re-ordered blocks Removed email addresses from COPYRIGHT * mesa Don't start with the app name, in the _swrat and _swpipe sections too... Re-ordered blocks * qupzilla SUMMARY must not end with "." * ruby Corrected license Re-ordered blocks * vncserver Removed "copyright" from COPYRIGHT
73 lines
1.6 KiB
Bash
73 lines
1.6 KiB
Bash
SUMMARY="A single-player 2D action role playing game"
|
|
DESCRIPTION="Flare is a single-player 2D action RPG with fast-paced action \
|
|
and a dark fantasy style."
|
|
HOMEPAGE="http://flarerpg.org"
|
|
COPYRIGHT="2010-2013 Clint Bellanger"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="3"
|
|
SOURCE_URI="http://downloads.sourceforge.net/project/flare-game/Linux/flare.0.19.tar.gz"
|
|
CHECKSUM_SHA256="c96995fff6b71d44ddeae611b1ae4cd35162655f73088000786d03478f0a924e"
|
|
SOURCE_DIR="flare.0.19"
|
|
PATCHES="flare-0.19.patch"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
flare$secondaryArchSuffix = $portVersion
|
|
app:Flare$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
flare_data == $portVersion
|
|
lib:libsdl$secondaryArchSuffix
|
|
lib:libsdl_mixer$secondaryArchSuffix
|
|
lib:libsdl_image$secondaryArchSuffix
|
|
lib:libsdl_ttf$secondaryArchSuffix
|
|
"
|
|
|
|
SUMMARY_data="Data files for the game Flare"
|
|
ARCHITECTURES_data="any"
|
|
|
|
PROVIDES_data="
|
|
flare_data = $portVersion
|
|
"
|
|
REQUIRES_data="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libsdl$secondaryArchSuffix
|
|
devel:sdl_mixer$secondaryArchSuffix
|
|
devel:sdl_image$secondaryArchSuffix
|
|
devel:sdl_ttf$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:cmake
|
|
cmd:gcc$secondaryArchSuffix
|
|
"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/flare
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cmake .
|
|
make $jobArgs
|
|
addResourcesToBinaries distribution/flare.rdef flare
|
|
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir $dataDir/flare
|
|
|
|
cp flare $appsDir
|
|
cp -r mods $dataDir/flare/
|
|
packageEntries data $dataDir
|
|
addAppDeskbarSymlink $appsDir/flare "Flare"
|
|
}
|