Added a_book, recipe by GCI2013 student Adrian Jelen

This commit is contained in:
Scott McCreary
2013-11-26 16:44:53 -08:00
parent 1c46dac123
commit 67e38cb342

View File

@@ -0,0 +1,40 @@
DESCRIPTION="A small calendar application with reminders. You can use this app to organize your time. The application supports the addition to each day tasks with the appropriate hours and browse all of them. Your job will be saved to a file when the application is closed."
SUMMARY="A small calendar application with reminders."
HOMEPAGE="https://github.com/HaikuArchives/A-Book"
SRC_URI="git+https://github.com/HaikuArchives/A-Book.git"
REVISION="1"
COPYRIGHT="2002 Maurice Michalski"
LICENSE="MIT"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
a_book = $portVersion
app:a_book = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
makefile_engine
cmd:gcc
cmd:make
cmd:mkdepend
"
BUILD()
{
make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
mkdir -p $appsDir
cp objects.x86-gcc2-release/A-Book $appsDir
addAppDeskbarSymlink $appsDir/A-Book
}