1SUMMARY="A tool to put simple sticky notes on the Desktop"
2DESCRIPTION="With DeskNotes you can leave little sticky notes all over your \
3Desktop, reminding you of things to do.
4The main difference between DeskNotes and other note utilities is that \
5DeskNotes is designed to be used as replicants. This means that when you tear \
6a note from the DeskNotes application onto your Desktop, it stays there! You \
7don't have to save it before rebooting, or fiddle with your UserBootscript.
8
9You can choose different colors from a right-click context menu or drop \
10arbitrary colors from applications like 'Icon-O-Matic' or 'Colors!'.
11And, even as replicants, notes can be resized with the bottom-right resize \
12widget."
13HOMEPAGE="https://github.com/HaikuArchives/DeskNotes"
14COPYRIGHT="2000 Colin Stewart
15	2012-2021 Haiku Archives team"
16LICENSE="BSD (3-clause)"
17REVISION="1"
18SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
19CHECKSUM_SHA256="e7d9c8816423d4a49590723edaa80f85716cd7a7e9498bb08720be5f00c1055e"
20SOURCE_DIR="DeskNotes-$portVersion"
21
22ARCHITECTURES="all"
23
24PROVIDES="
25	desknotes = $portVersion
26	app:DeskNotes = $portVersion
27	"
28REQUIRES="
29	haiku
30	"
31
32BUILD_REQUIRES="
33	haiku_devel
34	"
35BUILD_PREREQUIRES="
36	makefile_engine
37	cmd:g++
38	cmd:make
39	"
40
41BUILD()
42{
43	make $jobArgs OBJ_DIR=objects
44	make bindcatalogs OBJ_DIR=objects
45}
46
47INSTALL()
48{
49	mkdir -p $appsDir
50	cp -a objects/DeskNotes $appsDir
51	addAppDeskbarSymlink $appsDir/DeskNotes
52}
53