From 67e38cb342417ddfc1610e979b3a48b960ce0f49 Mon Sep 17 00:00:00 2001 From: Scott McCreary Date: Tue, 26 Nov 2013 16:44:53 -0800 Subject: [PATCH] Added a_book, recipe by GCI2013 student Adrian Jelen --- haiku-apps/a_book/a_book-1.1.recipe | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 haiku-apps/a_book/a_book-1.1.recipe diff --git a/haiku-apps/a_book/a_book-1.1.recipe b/haiku-apps/a_book/a_book-1.1.recipe new file mode 100644 index 000000000..ea824cf2b --- /dev/null +++ b/haiku-apps/a_book/a_book-1.1.recipe @@ -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 +}