Add Finance recipe

This commit is contained in:
Puck Meerburg
2013-12-31 11:38:34 +01:00
parent 75ed60fabe
commit bf260d558b

View File

@@ -0,0 +1,53 @@
SUMMARY="Manage all your finances with this easy-to-use app!"
DESCRIPTION="
Finance is an app made to provide all features expected from personal
finance software while using the style of Haiku. It allows for management
of multiple accounts and has graphs.
"
HOMEPAGE="https://github.com/HaikuArchiveæs/Finance"
SRC_URI="git://github.com/puckipedia/Finance.git#329f2dac2115301f3bb9bfb054dfc398c419ccac"
REVISION="1"
LICENSE="GNU GPL v2"
COPYRIGHT="
2001 Bunru Software
2009 Pier Luigi Fiorini
" # See src/code/Finance.rdef
ARCHITECTURES="x86_gcc2"
PROVIDES="
finance = $portVersion
app:finance = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_PREREQUIRES="
cmd:xres
cmd:gcc
cmd:jam
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
USER_SETTINGS_FILES="
settings/BeFinancial_data
"
BUILD()
{
cd src
./configure
jam
}
INSTALL()
{
cd src
mkdir -p $appsDir
cp generated/distro-haiku-*-release/Finance $appsDir
addAppDeskbarSymlink $appsDir/Finance
}