Files
haikuports/haiku-apps/capitalbe/capitalbe-1.1.recipe
Augustin Cavalier 6299524859 Remove cmd:mkdepend from BUILD_PREREQUIRES of makefile_engine apps.
Not needed now that the makefile_engine package depends on
cmd:mkdepend directly.
2015-07-19 13:59:19 -04:00

48 lines
1.1 KiB
Bash

SUMMARY="A finance manager"
DESCRIPTION="CapitalBe is a finance manager for Haiku. Easily track \
where your money is going. View reports, reconcile accounts and more! \
Like other programs published by the same author, Capital Be focuses \
on keeping easy jobs easy and making tough ones easier."
HOMEPAGE="http://github.com/HaikuArchives/CapitalBe"
SOURCE_URI="https://github.com/HaikuArchives/CapitalBe/archive/v1.1.tar.gz"
CHECKSUM_SHA256="e6e5ab26a372e79bbc1ac2eb6d7018296b983409f65c0da634bb420de08adde9"
SOURCE_DIR="CapitalBe-$portVersion"
REVISION="1"
LICENSE="MIT"
COPYRIGHT="2009 DarkWyrm (Jon Yoder)"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
capitalbe = $portVersion
app:CapitalBe = $portVersion
"
REQUIRES="
haiku
lib:libsqlite3
"
BUILD_REQUIRES="
haiku_devel
devel:libsqlite3
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
makefile_engine
"
BUILD()
{
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
capitalBeDir=$appsDir/CapitalBe
mkdir -p $capitalBeDir
mkdir -p $capitalBeDir/helpfiles
cp -r src/helpfiles/* $capitalBeDir/helpfiles/
mv objects/CapitalBe $capitalBeDir/CapitalBe
addAppDeskbarSymlink $capitalBeDir/CapitalBe "CapitalBe"
}