Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. SUMMARY="A Portable Z-Machine Interpreter"
  2. DESCRIPTION="Frotz is an interpreter for Infocom games \
  3. and other Z-machine games. \
  4. It complies with standard 1.0 of Graham Nelson's specification. \
  5. It was written by Stefan Jokisch in 1995-1997"
  6. HOMEPAGE="https://davidgriffith.gitlab.io/frotz/"
  7. COPYRIGHT="David Griffith"
  8. LICENSE="GNU GPL v2"
  9. REVISION="1"
  10. SOURCE_URI="https://gitlab.com/DavidGriffith/frotz/-/archive/2.50/frotz-2.50.tar.bz2"
  11. CHECKSUM_SHA256="7fd1185318dec2c897228d6ed81d4d2599d64d1e5bb7f913c09d17f3337ec663"
  12. SOURCE_DIR="frotz-$portVersion"
  13.  
  14. ARCHITECTURES="x86_gcc2 x86 x86_64"
  15.  
  16. PROVIDES="
  17. frotz = $portVersion
  18. "
  19. REQUIRES="
  20. haiku
  21. lib:ncurses
  22. "
  23.  
  24. BUILD_REQUIRES="
  25. haiku_devel
  26. devel:libncurses
  27. "
  28. BUILD_PREREQUIRES="
  29. cmd:gcc
  30. cmd:make
  31. cmd:which
  32. "
  33.  
  34. BUILD()
  35. {
  36. make $jobArgs
  37. }
  38.  
  39. INSTALL()
  40. {
  41. make install
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement