Added takenotes, recipe by GCI2013 student Alvin

This commit is contained in:
Scott McCreary
2013-11-26 10:56:28 +00:00
parent 8cbe0c1861
commit 12003fe6e5

View File

@@ -0,0 +1,47 @@
SUMMARY="A note taking application"
DESCRIPTION="
With this application you can:
- Write a note
- Edit the font family, color and size
- Change the color of your note
- Move your note on the desktop
- Link a note to a particular application
- Tag your note for easy search
- Set an alarm to reminds you date, appointments and so on
"
HOMEPAGE="https://github.com/HaikuArchives/TakeNotes"
SRC_URI="git+https://github.com/HaikuArchives/TakeNotes"
REVISION="1"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
takenotes=$portVersion
app:takenotes=$portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES=""
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
makefile_engine
cmd:gcc
cmd:make
cmd:mkdepend
"
COPYRIGHT="Copyright 2009, Ilio Catallo, Stefano Celentano, Eleonora Ciceri, all rights reserved"
LICENSE="GNU GPL v2"
SOURCE_DIR="$portVersionedName"
BUILD()
{
make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
architecture=$(echo $buildArchitecture | sed 's/_/-/g')
mkdir -p $appsDir
cp objects.$architecture-release/TakeNotes $appsDir/TakeNotes
addAppDeskbarSymlink $appsDir/TakeNotes
}