1SUMMARY="Manage all your finances with this easy-to-use app!"
2DESCRIPTION="
3Finance is an app made to provide all features expected from personal finance \
4software while using the style of Haiku. It can be used to balance multiple \
5accounts and you can import Quicken or Money data, reconcile statements, view \
6spending categorization and net worth trends, all with customizable categories \
7and payees.
8"
9HOMEPAGE="https://github.com/HaikuArchives/Finance"
10COPYRIGHT="
11	2001 Bunru Software
12	2009 Pier Luigi Fiorini
13	"
14LICENSE="GNU GPL v2"
15REVISION="4"
16srcGitRev="60debd1ff12e3abdb856b14fca4b71d30bfa8555"
17SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
18CHECKSUM_SHA256="c7c854f4a3153e7d4bf10a9ab5ada24cd8dd8a2fe7766c9083dee8b3f706dbd2"
19SOURCE_DIR="Finance-$srcGitRev"
20
21ARCHITECTURES="all"
22
23USER_SETTINGS_FILES="
24	settings/BeFinancial_data
25	"
26
27PROVIDES="
28	finance = $portVersion
29	app:Finance = $portVersion
30	"
31REQUIRES="
32	haiku
33	"
34
35BUILD_REQUIRES="
36	haiku_devel
37	"
38BUILD_PREREQUIRES="
39	cmd:awk
40	cmd:gcc
41	cmd:jam
42	cmd:xres
43	"
44
45BUILD()
46{
47	runConfigure ./configure
48	jam -q $jobArgs
49}
50
51INSTALL()
52{
53	mkdir -p $appsDir
54	cp generated/distro-haiku-*-release/Finance $appsDir
55	addAppDeskbarSymlink $appsDir/Finance
56}
57