My build of nnn with minor changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 lines
1.3 KiB

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