Merged in cdesai/haikuports/desknotes (pull request #442)

Add a new Haiku App, DeskNotes
This commit is contained in:
diversys
2015-01-10 20:03:12 +03:00

View File

@@ -0,0 +1,47 @@
SUMMARY="A simple note replicant-capable program"
DESCRIPTION="
With DeskNotes, you can now leave little notes all over your desktop \
reminding you of things to do. The main difference between DeskNotes and \
other Note utilities for Haiku, is that DeskNotes is designed to be used \
as a replicant. This means that when you tear a note from the DeskNotes \
application onto your desktop, it stays there! You don't have to save it \
before rebooting, or fiddle with your bootscript.
"
HOMEPAGE="https://github.com/HaikuArchives/DeskNotes"
SRC_URI="git+https://github.com/HaikuArchives/DeskNotes#93f0654745e3dc317152bdfc49ae8b6d23bf443b"
REVISION="1"
LICENSE="BSD (3-clause)"
COPYRIGHT="2000 Colin Stewart"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
desknotes = $portVersion
app:desknotes = $portVersion
"
REQUIRES="
haiku
lib:libstdc++
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:gcc
cmd:mkdepend
"
BUILD()
{
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp -a objects/DeskNotes $appsDir
addAppDeskbarSymlink $appsDir/DeskNotes
}