Files
haikuports/haiku-apps/desknotes/desknotes-1.1.recipe
Jerome Duval fc0936b040 Bump revisions for x86_64 rebuild after time_t change.
* a few apps needed build fix for time_t.
* disable compatibility packages for x86_64.
2017-06-27 15:46:25 +02:00

47 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="5"
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
}