From e1263384ef26ab78a4970039546e3aad9837d9c3 Mon Sep 17 00:00:00 2001 From: bach5000 Date: Thu, 7 Dec 2017 16:45:43 +0000 Subject: [PATCH] WakeUp: initial recipe (#1825) --- haiku-apps/wakeup/wakeup-1.0.recipe | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 haiku-apps/wakeup/wakeup-1.0.recipe diff --git a/haiku-apps/wakeup/wakeup-1.0.recipe b/haiku-apps/wakeup/wakeup-1.0.recipe new file mode 100644 index 000000000..0d406279d --- /dev/null +++ b/haiku-apps/wakeup/wakeup-1.0.recipe @@ -0,0 +1,45 @@ +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="1" +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" + +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 +}