Add recipe for Fortuna

This commit is contained in:
Puck Meerburg
2013-12-02 23:18:26 +01:00
parent 664e3c050d
commit 8e554bea72
2 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
SUMMARY="A small GUI for showing the well known fortunes"
DESCRIPTION="
Fortuna is a nice-looking graphical program which displays a fortune when you open it.
Yeah, sure, there is already a fortune program, but it only shows from the command line,
you'll get a lot of repeats, it's quite a bit of work to install more,
and you have to muck around with your UserBootScript. Lots of messing around.
Then again, you can use Fortuna, which has none of this.
" # Taken from homepage
HOMEPAGE="http://darkwyrm.beemulated.net/apps/fortuna.htm"
SRC_URI="git://github.com/HaikuArchives/Fortuna.git#eacb3689800064b948d3b943302b2d4bf18c9dbc"
REVISION="1"
LICENSE="MIT"
COPYRIGHT="2006 DarkWyrm"
ARCHITECTURES="x86 x86_gcc2"
PATCHES="fortuna-1.0.0.patch"
PROVIDES="
fortuna = $portVersion
app:fortuna = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:xres
"
BUILD()
{
gcc -o Fortuna -lbe src/main.cpp src/FortuneWindow.cpp src/FortuneFunctions.cpp
xres -o Fortuna src/Fortuna.rsrc
mimeset -f Fortuna
}
INSTALL()
{
mkdir -p $appsDir/Fortuna
cp Fortuna $appsDir/Fortuna
addAppDeskbarSymlink $appsDir/Fortuna/Fortuna
}