0
0
Fork 0
haikuports/haiku-apps/haikutodo/haikutodo-0.0.recipe

43 lines
919 B
Bash
Raw Permalink Normal View History

2015-07-20 19:45:02 +00:00
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."
HOMEPAGE="https://github.com/AdrianArroyoCalle/haiku-todo"
COPYRIGHT="2014 Adrian Arroyo Calle"
LICENSE="MIT"
2018-08-06 15:15:29 +00:00
REVISION="2"
2018-09-17 06:08:17 +00:00
srcGitRev="2b8f6ea07e7034f4fe9564e6419587dad9f00217"
SOURCE_URI="https://github.com/AdrianArroyoCalle/haiku-todo/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="90475c47cc0a8f70ef76f58b202ad3fb76fe3b965cd95116b7c9b724f96ab168"
SOURCE_DIR="haiku-todo-$srcGitRev"
2018-08-03 11:46:11 +00:00
ARCHITECTURES="x86_gcc2"
2015-07-20 19:45:02 +00:00
PROVIDES="
2018-08-06 15:15:29 +00:00
haikutodo = $portVersion
2015-07-20 19:45:02 +00:00
app:haikutodo
2018-09-17 06:08:17 +00:00
"
2015-07-20 19:45:02 +00:00
BUILD_REQUIRES="
haiku_devel
2018-09-17 06:08:17 +00:00
"
2015-07-20 19:45:02 +00:00
BUILD_PREREQUIRES="
cmd:cmake
cmd:g++
cmd:make
2018-09-17 06:08:17 +00:00
"
2015-07-20 19:45:02 +00:00
BUILD()
{
mkdir -p build
cd build
cmake ..
make $jobArgs
}
INSTALL()
{
mkdir -p $appsDir
cp build/HaikuToDo $appsDir
addAppDeskbarSymlink $appsDir/HaikuToDo HaikuToDo
}