ok benoit@ The Algol 68 Genie project preserves and promotes Algol 68 out of educational as well as scientific-historical interest, by making available a recent checkout compiler-interpreter written from scratch together with extensive documentation for both the language and this new implementation. Algol 68 Genie is a fast compiler-interpreter which ranks among the most complete implementations of the language.
25 lines
639 B
Makefile
25 lines
639 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/06/29 15:56:14 bcallah Exp $
|
|
|
|
COMMENT = Algol 68 Genie compiler-interpreter
|
|
DISTNAME = algol68g-2.8.4
|
|
CATEGORIES = lang
|
|
|
|
HOMEPAGE = https://jmvdveer.home.xs4all.nl/algol.html
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = https://jmvdveer.home.xs4all.nl/
|
|
|
|
WANTLIB += c gsl gslcblas m ncurses pthread readline
|
|
|
|
LIB_DEPENDS = devel/gsl
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --disable-plotutils --disable-postgresql
|
|
CONFIGURE_ENV = CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|