1SUMMARY="A note taking application"
2DESCRIPTION="With TakeNotes you can:
3- Write a note
4- Edit the font family, color and size
5- Change the color of your note
6- Move your note on the desktop
7- Link a note to a particular application
8- Tag your note for easy search
9- Set an alarm to remind you of dates, appointments and so on"
10HOMEPAGE="https://github.com/HaikuArchives/TakeNotes"
11COPYRIGHT="2009 Ilio Catallo, Stefano Celentano, Eleonora Ciceri"
12LICENSE="GNU GPL v2"
13REVISION="2"
14srcGitRev="4955f6636a40caab6cb461e5d2d714a6343b012a"
15SOURCE_URI="https://github.com/HaikuArchives/TakeNotes/archive/$srcGitRev.tar.gz"
16CHECKSUM_SHA256="19e74148c479e86b8ebcb18e5a900a79d2b014e54c114d2383a254114f609b4b"
17SOURCE_DIR="TakeNotes-$srcGitRev/source"
18
19ARCHITECTURES="all"
20
21PROVIDES="
22	takenotes=$portVersion
23	app:TakeNotes=$portVersion
24	"
25REQUIRES="
26	haiku
27	"
28
29BUILD_REQUIRES="
30	haiku_devel
31	"
32BUILD_PREREQUIRES="
33	makefile_engine
34	cmd:gcc
35	cmd:make
36	"
37
38BUILD()
39{
40	make OBJ_DIR=objects
41}
42
43INSTALL()
44{
45	mkdir -p $appsDir
46	cp objects/TakeNotes $appsDir
47	addAppDeskbarSymlink $appsDir/TakeNotes
48}
49