Files
haikuports/haiku-apps/wakeup/wakeup-1.0.recipe
nys fbc7bedf63 fix x86_64 for TimeTracker, Toner, WakeUp and BeBattle (#2019)
* haiku-apps/genesis_commander: mark as tested.
* haiku-apps/timetracker: add patch for gcc5 builds only.
* haiku-apps/toner: add patch, bump revision.
* haiku-apps/wakeup: add patch, bump revision.
* haiku-games/bebattle: add patch, bump revision.
2018-01-02 08:33:57 +00:00

47 lines
1.1 KiB
Bash

SUMMARY="An application that plays a sound after a given time"
DESCRIPTION="WakeUp is a timer application that allows users \
to set their own ringtone, giving them a more personalized \
experience. This application could be used for many purposes, \
like an alarm clock or a cooking timer, just to name a few."
HOMEPAGE="https://github.com/HaikuArchives/WakeUp"
COPYRIGHT="1999 Jonathan Villemure"
LICENSE="MIT"
REVISION="2"
gitSrcRevision="116afedea73ba9779d3d641028b65fdb2dc19012"
SOURCE_URI="https://github.com/HaikuArchives/WakeUp/archive/$gitSrcRevision.tar.gz"
CHECKSUM_SHA256="28eb8504a2a436a117821aaa399b8c37f5363bd9fcb2ff814f6cb1b6264da311"
SOURCE_FILENAME="WakeUp-$gitSrcRevision.tar.gz"
SOURCE_DIR="WakeUp-$gitSrcRevision"
PATCHES="wakeup-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86_64"
PROVIDES="
wakeup = $portVersion
app:WakeUp = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
make OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp objects/WakeUp $appsDir
addAppDeskbarSymlink $appsDir/WakeUp
}