alvin_

takenotes-1.0.0.recipe

Nov 25th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.18 KB | None | 0 0
  1. SUMMARY="A note taking application"
  2. DESCRIPTION="
  3.     With this application you can:
  4.     - Write a note
  5.     - Edit the font family, color and size
  6.     - Change the color of your note
  7.     - Move your note on the desktop
  8.     - Link a note to a particular application
  9.     - Tag your note for easy search
  10.     - Set an alarm to reminds you date, appointments and so on
  11.     "
  12. HOMEPAGE="https://github.com/HaikuArchives/TakeNotes"
  13. SRC_URI="git+https://github.com/HaikuArchives/TakeNotes"
  14. REVISION="1"
  15. ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
  16. PROVIDES="
  17.     takenotes=$portVersion
  18.     app:takenotes=$portVersion
  19.     "
  20. REQUIRES="
  21.     haiku >= $haikuVersion
  22.     "
  23. BUILD_REQUIRES=""
  24. BUILD_PREREQUIRES="
  25.     haiku_devel >= $haikuVersion
  26.     makefile_engine
  27.     cmd:gcc
  28.     cmd:make
  29.     cmd:mkdepend
  30.     "
  31. COPYRIGHT="Copyright 2009, Ilio Catallo, Stefano Celentano, Eleonora Ciceri, all rights reserved"
  32. LICENSE="GNU GPL v2"
  33. SOURCE_DIR="$portVersionedName"
  34.  
  35. BUILD()
  36. {
  37.     make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
  38. }
  39.  
  40. INSTALL()
  41. {
  42.     architecture=$(echo $buildArchitecture | sed 's/_/-g')
  43.     mkdir -p $appsDir
  44.     cp objects.$architecture-release/takenotes $appsDir/TakeNotes
  45.    
  46.     addAppDeskbarSymlink $appsDir/TakeNotes
  47. }
Advertisement
Add Comment
Please, Sign In to add comment