mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 13:38:52 +02:00
53 lines
1.4 KiB
Bash
53 lines
1.4 KiB
Bash
SUMMARY="A tool to put simple sticky notes on the Desktop"
|
|
DESCRIPTION="With DeskNotes you can leave little sticky notes all over your \
|
|
Desktop, reminding you of things to do.
|
|
The main difference between DeskNotes and other note utilities is that \
|
|
DeskNotes is designed to be used as replicants. 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 UserBootscript.
|
|
|
|
You can choose different colors from a right-click context menu or drop \
|
|
arbitrary colors from applications like 'Icon-O-Matic' or 'Colors!'.
|
|
And, even as replicants, notes can be resized with the bottom-right resize \
|
|
widget."
|
|
HOMEPAGE="https://github.com/HaikuArchives/DeskNotes"
|
|
COPYRIGHT="2000 Colin Stewart
|
|
2012-2021 Haiku Archives team"
|
|
LICENSE="BSD (3-clause)"
|
|
REVISION="2"
|
|
SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="9758d55973bd1730cb3901ddab763681eaa99f37e9838dc851c0e9a8d1dcca90"
|
|
SOURCE_DIR="DeskNotes-$portVersion"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
desknotes = $portVersion
|
|
app:DeskNotes = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
make bindcatalogs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a objects/DeskNotes $appsDir
|
|
addAppDeskbarSymlink $appsDir/DeskNotes
|
|
}
|