Makefile 645 B

12345678910111213141516171819202122232425262728293031323334
  1. # $OpenBSD: Makefile,v 1.16 2017/04/09 14:16:54 jasper Exp $
  2. COMMENT= newLISP is a LISP like, general purpose scripting language
  3. V= 10.7.1
  4. DISTNAME= newlisp-$V
  5. CATEGORIES= lang
  6. HOMEPAGE= http://newlisp.org/
  7. # GPLv3+
  8. PERMIT_PACKAGE_CDROM= Yes
  9. WANTLIB += c m ncurses readline
  10. MASTER_SITES= http://newlisp.org/downloads/
  11. EXTRACT_SUFX= .tgz
  12. RUN_DEPENDS= devel/xdg-utils
  13. SEPARATE_BUILD= Yes
  14. CONFIGURE_STYLE= simple
  15. CONFIGURE_SCRIPT= configure-alt
  16. CONFIGURE_ARGS += --enable-readline
  17. TEST_TARGET= check
  18. WRKBUILD= ${WRKSRC}
  19. SUBST_VARS= V
  20. pre-configure:
  21. ${SUBST_CMD} ${WRKSRC}/guiserver/newlisp-edit.lsp
  22. .include <bsd.port.mk>