mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 13:08:53 +02:00
40 lines
789 B
Bash
40 lines
789 B
Bash
SUMMARY="A small calendar application with reminders"
|
|
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"
|
|
SOURCE_URI="git+https://github.com/HaikuArchives/A-Book.git#b52be13bbf3f2"
|
|
REVISION="3"
|
|
COPYRIGHT="2002 Maurice Michalski"
|
|
LICENSE="MIT"
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
a_book = $portVersion
|
|
app:A_Book = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
make OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a src/objects/A-Book $appsDir
|
|
addAppDeskbarSymlink $appsDir/A-Book
|
|
}
|