36 lines
694 B
Makefile
36 lines
694 B
Makefile
# $OpenBSD: Makefile,v 1.9 2013/03/11 11:20:28 espie Exp $
|
|
|
|
COMMENT= newLISP is a LISP like, general purpose scripting language
|
|
|
|
V= 10.4.5
|
|
DISTNAME= newlisp-$V
|
|
REVISION= 0
|
|
CATEGORIES= lang
|
|
HOMEPAGE= http://newlisp.org/
|
|
MAINTAINER= Ted Walther <ted@reactor-core.org>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c m ncurses readline
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/downloads/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
RUN_DEPENDS= devel/xdg-utils
|
|
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE= simple
|
|
CONFIGURE_SCRIPT= configure-alt
|
|
CONFIGURE_ARGS += --enable-readline
|
|
|
|
TEST_TARGET= check
|
|
|
|
WRKBUILD= ${WRKSRC}
|
|
SUBST_VARS= V
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/guiserver/newlisp-edit.lsp
|
|
|
|
.include <bsd.port.mk>
|