Files
haikuports/haiku-apps/fortuna/fortuna-1.0.0.recipe
2014-01-02 16:40:57 -05:00

53 lines
1.2 KiB
Plaintext

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#9e0cd6c1e6"
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_PREREQUIRES="
cmd:gcc
cmd:xres
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
BUILD()
{
rc src/Fortuna.rdef
g++ -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
cp Fortuna $appsDir
addAppDeskbarSymlink $appsDir/Fortuna
}