Files
haikuports/haiku-apps/takenotes/takenotes-1.0.0.recipe
2017-01-28 15:31:10 +01:00

50 lines
1.1 KiB
Bash

SUMMARY="A note taking application"
DESCRIPTION="With TakeNotes you can:
- Write a note
- Edit the font family, color and size
- Change the color of your note
- Move your note on the desktop
- Link a note to a particular application
- Tag your note for easy search
- Set an alarm to remind you of dates, appointments and so on"
HOMEPAGE="https://github.com/HaikuArchives/TakeNotes"
COPYRIGHT="2009 Ilio Catallo, Stefano Celentano, Eleonora Ciceri"
LICENSE="GNU GPL v2"
REVISION="6"
SOURCE_URI="https://github.com/HaikuArchives/TakeNotes/archive/7f84d8f50e.tar.gz"
CHECKSUM_SHA256="6236158c21f3aed723a552693bdb1d576024ddaca5a5669f713e9ea4dbb4ae98"
SOURCE_DIR="TakeNotes-7f84d8f50eca3f507692dc6e59874818ec21195b/source"
PATCHES="takenotes-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
takenotes=$portVersion
app:TakeNotes=$portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
make OBJ_DIR=objects \
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
mkdir -p $appsDir
cp objects/TakeNotes $appsDir
addAppDeskbarSymlink $appsDir/TakeNotes
}