mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Needs some fixes, merge requested upstream: https://gitorious.org/desknotes/desknotes/merge_requests/1
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
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
|
|
}
|