From bf260d558b1552dddaecff875c1e80a85f527649 Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Tue, 31 Dec 2013 11:38:34 +0100 Subject: [PATCH 1/4] Add Finance recipe --- haiku-apps/finance/finance-1.0.0.recipe | 53 +++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 haiku-apps/finance/finance-1.0.0.recipe diff --git a/haiku-apps/finance/finance-1.0.0.recipe b/haiku-apps/finance/finance-1.0.0.recipe new file mode 100644 index 000000000..bedc75a25 --- /dev/null +++ b/haiku-apps/finance/finance-1.0.0.recipe @@ -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 +} From 8fb245a0fc1362ac9b48f04cd03fc8554a743eb7 Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Tue, 31 Dec 2013 12:34:15 +0000 Subject: [PATCH 2/4] Finance: Add runConfigure, change repo --- haiku-apps/finance/finance-1.0.0.recipe | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/haiku-apps/finance/finance-1.0.0.recipe b/haiku-apps/finance/finance-1.0.0.recipe index bedc75a25..0c94dc460 100644 --- a/haiku-apps/finance/finance-1.0.0.recipe +++ b/haiku-apps/finance/finance-1.0.0.recipe @@ -6,8 +6,8 @@ DESCRIPTION=" of multiple accounts and has graphs. " -HOMEPAGE="https://github.com/HaikuArchiveƦs/Finance" -SRC_URI="git://github.com/puckipedia/Finance.git#329f2dac2115301f3bb9bfb054dfc398c419ccac" +HOMEPAGE="https://github.com/HaikuArchives/Finance" +SRC_URI="git://github.com/HaikuArchives/Finance.git#c047e2da9a5e6c8cddb5ef3b430fcd43a429c2a4" REVISION="1" LICENSE="GNU GPL v2" COPYRIGHT=" @@ -39,14 +39,14 @@ USER_SETTINGS_FILES=" BUILD() { - cd src - ./configure + cd trunk + runConfigure ./configure jam } INSTALL() { - cd src + cd trunk mkdir -p $appsDir cp generated/distro-haiku-*-release/Finance $appsDir addAppDeskbarSymlink $appsDir/Finance From 0dace48ecd592c2736a8f858d7ce03cb0403822b Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Tue, 31 Dec 2013 16:11:44 +0000 Subject: [PATCH 3/4] Fix Finance recipe, changes in repo --- haiku-apps/finance/finance-1.0.0.recipe | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/haiku-apps/finance/finance-1.0.0.recipe b/haiku-apps/finance/finance-1.0.0.recipe index 0c94dc460..ccd20c0fa 100644 --- a/haiku-apps/finance/finance-1.0.0.recipe +++ b/haiku-apps/finance/finance-1.0.0.recipe @@ -2,12 +2,14 @@ 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. + finance software while using the style of Haiku. + It can be used to balance multiple accounts and you can import Quicken or Money data, + reconcile statements, view spending categorization and net worth trends, + all with customizable categories and payees. " HOMEPAGE="https://github.com/HaikuArchives/Finance" -SRC_URI="git://github.com/HaikuArchives/Finance.git#c047e2da9a5e6c8cddb5ef3b430fcd43a429c2a4" +SRC_URI="git://github.com/HaikuArchives/Finance.git#33513a1c44b6f94a46ccae563f19a64440dea46a" REVISION="1" LICENSE="GNU GPL v2" COPYRIGHT=" @@ -39,14 +41,12 @@ USER_SETTINGS_FILES=" BUILD() { - cd trunk runConfigure ./configure jam } INSTALL() { - cd trunk mkdir -p $appsDir cp generated/distro-haiku-*-release/Finance $appsDir addAppDeskbarSymlink $appsDir/Finance From d3a0b72059f8c22ccaa570c46c5ed9dbe96e325c Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Tue, 31 Dec 2013 18:44:02 +0000 Subject: [PATCH 4/4] Remove comment --- haiku-apps/finance/finance-1.0.0.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haiku-apps/finance/finance-1.0.0.recipe b/haiku-apps/finance/finance-1.0.0.recipe index ccd20c0fa..722629db1 100644 --- a/haiku-apps/finance/finance-1.0.0.recipe +++ b/haiku-apps/finance/finance-1.0.0.recipe @@ -15,7 +15,7 @@ LICENSE="GNU GPL v2" COPYRIGHT=" 2001 Bunru Software 2009 Pier Luigi Fiorini - " # See src/code/Finance.rdef + " ARCHITECTURES="x86_gcc2"