Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 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 <dave@661.org>"
  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.  
  12. ARCHITECTURES="x86_gcc2 x86 x86_64"
  13.  
  14. PROVIDES="
  15. projectX = $portVersion
  16. "
  17. REQUIRES="
  18. haiku
  19. "
  20.  
  21. BUILD_REQUIRES="
  22. haiku_devel
  23. "
  24.  
  25. BUILD()
  26. {
  27. ./autogen.sh
  28. runConfigure ./configure
  29. make $jobArgs
  30. }
  31.  
  32. INSTALL()
  33. {
  34. make install
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement