mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 15:08:57 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
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="1"
|
|
SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="e7d9c8816423d4a49590723edaa80f85716cd7a7e9498bb08720be5f00c1055e"
|
|
SOURCE_DIR="DeskNotes-$portVersion"
|
|
|
|
ARCHITECTURES="all"
|
|
|
|
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
|
|
}
|