mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +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.
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
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."
|
|
HOMEPAGE="http://darkwyrm.beemulated.net/apps/fortuna.htm"
|
|
COPYRIGHT="2006 DarkWyrm"
|
|
LICENSE="MIT"
|
|
REVISION="3"
|
|
srcGitRev="51052ccef4643aef97f8a76b311c1aca0dc935bf"
|
|
SOURCE_URI="https://github.com/HaikuArchives/Fortuna/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="1ec5b26eb867e9c2a8ab32ac2158ae3ccbc57aa74feb4b73d6aa21c3007cbcaf"
|
|
SOURCE_DIR="Fortuna-$srcGitRev"
|
|
|
|
ARCHITECTURES="all"
|
|
|
|
PROVIDES="
|
|
fortuna = $portVersion
|
|
app:Fortuna = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:xres
|
|
"
|
|
|
|
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
|
|
}
|