0
0
Fork 0
haikuports/haiku-apps/a_book/a_book-1.1.recipe

44 lines
952 B
Bash
Raw Permalink Normal View History

SUMMARY="A small calendar application with reminders"
2014-07-21 16:50:55 +00:00
DESCRIPTION="You can use this application to organize upcoming events that \
you have scheduled. You can add tasks to any day and schedule reminders at \
particular times for them."
HOMEPAGE="https://github.com/HaikuArchives/A-Book"
COPYRIGHT="2002 Maurice Michalski"
LICENSE="MIT"
REVISION="5"
2016-01-07 18:44:49 +00:00
SOURCE_URI="https://github.com/HaikuArchives/A-Book/archive/b52be13bbf3f236fd10c5053b8ecf11c8211ce7e.tar.gz"
CHECKSUM_SHA256="fa2ee3f6a7fe08f8a67c3d9ce0574e54def68d0bbc7e9950c4826bd50f4dd46a"
SOURCE_DIR="A-Book-b52be13bbf3f236fd10c5053b8ecf11c8211ce7e"
2015-12-26 10:44:26 +00:00
ARCHITECTURES="all"
PROVIDES="
a_book = $portVersion
2014-10-28 21:25:03 +00:00
app:A_Book = $portVersion
"
REQUIRES="
haiku
"
2015-12-26 10:44:26 +00:00
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
2014-07-21 16:50:55 +00:00
cd src
make OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
2014-07-21 16:50:55 +00:00
cp -a src/objects/A-Book $appsDir
addAppDeskbarSymlink $appsDir/A-Book
}