My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

nnn-master.recipe 1.5 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. SUMMARY="The missing terminal file manager for X"
  2. DESCRIPTION="nnn is a full-featured terminal file manager. It's tiny and \
  3. nearly 0-config with an incredible performance.
  4. nnn is also a du analyzer, an app launcher, a batch renamer and a file picker. \
  5. The plugin repository has tons of plugins and documentation to extend the \
  6. capabilities further. You can plug new functionality and play with a \
  7. custom keybind instantly. There's an independent (neo)vim plugin.
  8. It runs smoothly on the Raspberry Pi, Termux on Android, Linux, macOS, BSD, \
  9. Cygwin, WSL and works seamlessly with DEs and GUI utilities.
  10. Visit the Wiki for concepts, program usage, how-tos and troubleshooting."
  11. HOMEPAGE="https://github.com/jarun/nnn"
  12. COPYRIGHT="2016-2020 Arun Prakash Jana"
  13. LICENSE="BSD (2-clause)"
  14. REVISION="1"
  15. SOURCE_URI="git://github.com/jarun/nnn.git"
  16. ARCHITECTURES="x86_64"
  17. SECONDARY_ARCHITECTURES="x86"
  18. PROVIDES="
  19. nnn$secondaryArchSuffix = $portVersion
  20. cmd:nnn = $portVersion
  21. "
  22. REQUIRES="
  23. haiku$secondaryArchSuffix
  24. file$secondaryArchSuffix
  25. lib:libncurses$secondaryArchSuffix
  26. lib:libreadline$secondaryArchSuffix
  27. "
  28. BUILD_REQUIRES="
  29. haiku${secondaryArchSuffix}_devel
  30. devel:libncurses$secondaryArchSuffix
  31. devel:libreadline$secondaryArchSuffix
  32. "
  33. BUILD_PREREQUIRES="
  34. cmd:g++$secondaryArchSuffix
  35. cmd:gcc$secondaryArchSuffix
  36. cmd:install
  37. cmd:ld$secondaryArchSuffix
  38. cmd:make
  39. cmd:pkg_config$secondaryArchSuffix
  40. "
  41. BUILD()
  42. {
  43. make -f misc/haiku/Makefile $jobArgs
  44. }
  45. INSTALL()
  46. {
  47. make -f misc/haiku/Makefile install PREFIX=$prefix
  48. }