From 788d47fef289473ea8b9e1e2e94e6f7a4f72d182 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 20 Jul 2015 21:45:02 +0200 Subject: [PATCH] Add recipe for haikutodo. --- haiku-apps/haikutodo/haikutodo-0.0.recipe | 40 +++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 haiku-apps/haikutodo/haikutodo-0.0.recipe diff --git a/haiku-apps/haikutodo/haikutodo-0.0.recipe b/haiku-apps/haikutodo/haikutodo-0.0.recipe new file mode 100644 index 000000000..7d4e669c4 --- /dev/null +++ b/haiku-apps/haikutodo/haikutodo-0.0.recipe @@ -0,0 +1,40 @@ +SUMMARY="Manage your task list and sync it with online services" +DESCRIPTION="HaikuToDo allows you to manage lists of tasks and synchronize \ +them with online services such as Google Tasks." +ARCHITECTURES="x86_gcc2" +REVISION="1" + +HOMEPAGE="https://github.com/AdrianArroyoCalle/haiku-todo" +SOURCE_URI="git+https://github.com/AdrianArroyoCalle/haiku-todo.git" + +COPYRIGHT="2014 Adrian Arroyo Calle" +LICENSE="MIT" + +PROVIDES=" + app:haikutodo +" + +BUILD_REQUIRES=" + haiku_devel +" + +BUILD_PREREQUIRES=" + cmd:cmake + cmd:g++ + cmd:make +" + +BUILD() +{ + mkdir -p build + cd build + cmake .. + make $jobArgs +} + +INSTALL() +{ + mkdir -p $appsDir + cp build/HaikuToDo $appsDir + addAppDeskbarSymlink $appsDir/HaikuToDo HaikuToDo +}