Files
haikuports/haiku-apps/desknotes/desknotes-1.1.recipe
Raefaldhi Amartya Junior 1f76cce1b0 Fix several broken recipes due to "$(HOMEPAGE)" (#912)
Added new version and removed the old one for beshare,
fix broken thing and reformat the style to follow guidelines:
- belife
- beshare
- catkeyseditor
- colors
- copynametoclipboard
- desknotes
- genesis_commander
2016-12-15 21:05:28 +00:00

48 lines
1.2 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 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 UserBootscript."
HOMEPAGE="https://github.com/HaikuArchives/DeskNotes"
COPYRIGHT="2000 Colin Stewart"
LICENSE="BSD (3-clause)"
REVISION="4"
srcGitRev="e39a1cf592c5a51f49578dd5efe0bbb1c6d0f450"
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="f72a78d1c39a7193c8dd404b066190f5fd9452b7c650f2eb31cf2a4c6bfdede5"
SOURCE_DIR="DeskNotes-$srcGitRev"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
desknotes = $portVersion
app:DeskNotes = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:gcc
"
BUILD()
{
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp -a objects/DeskNotes $appsDir
addAppDeskbarSymlink $appsDir/DeskNotes
}