0
0
Fork 0
haikuports/haiku-apps/remember/remember-1.0.0.recipe

45 lines
1.0 KiB
Bash
Raw Permalink Normal View History

2015-01-17 15:21:31 +00:00
SUMMARY="A small app to remember scheduled events"
DESCRIPTION="\
Remember is a small app for Haiku, which allows you to get notifications about \
events easily, by adding files into an Events folder. It will automatically \
find those and, when the time you chose has arrived, it will pop up with a \
notification, warning you about the event."
HOMEPAGE="https://github.com/HaikuArchives/Remember"
2016-02-17 19:26:37 +00:00
COPYRIGHT="2005 Michael Lotz"
LICENSE="MIT"
REVISION="2"
SOURCE_URI="https://github.com/HaikuArchives/Remember/archive/1a794865a438563ea4ce1fc9188679444cd115ef.tar.gz"
2015-01-17 15:21:31 +00:00
CHECKSUM_SHA256="ce1a7f0e05437a6ae069e642d234ddbf5916f58425692ab7dbb88d75ead6a29f"
2016-02-17 19:26:37 +00:00
SOURCE_DIR="Remember-1a794865a438563ea4ce1fc9188679444cd115ef"
2015-01-17 15:21:31 +00:00
ARCHITECTURES="all ?x86"
2015-01-17 15:21:31 +00:00
PROVIDES="
remember = $portVersion
app:remember = $portVersion
"
REQUIRES="
haiku
"
2016-02-17 19:26:37 +00:00
2015-01-17 15:21:31 +00:00
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
2018-08-09 09:26:07 +00:00
cmd:make
2015-01-17 15:21:31 +00:00
"
BUILD()
{
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp -a objects/Remember $appsDir
addAppDeskbarSymlink $appsDir/Remember
}