summaryrefslogtreecommitdiff
path: root/lang/owl-lisp/Makefile
diff options
context:
space:
mode:
authorkamil <kamil@pkgsrc.org>2017-02-11 01:40:27 +0000
committerkamil <kamil@pkgsrc.org>2017-02-11 01:40:27 +0000
commit516aefbb7db47291c8162222aaa5e8113a60f269 (patch)
tree3f9f5c083411d7f81b402d80c799ef47a62a3441 /lang/owl-lisp/Makefile
parent5f96861fcdb8ad7a3ff66de8fce831ffe2cb889e (diff)
downloadpkgsrc-516aefbb7db47291c8162222aaa5e8113a60f269.tar.gz
Import owl-lisp-0.1.13 as lang/owl-lisp.
Owl Lisp is a purely functional dialect of Scheme. It is based on the applicable subset of R7RS standard, extending it mainly with threads and data structures necessary for purely functional operation. Owl can be used on most UNIX-like systems, such as Linux, BSDs and OS X. Programs are typically compiled via C to standalone binaries, so Owl isn't needed to run programs written in it. Owl project originally got started both as an attempt to extend R5RS Scheme with some necessary features, such as threads and modules, and as an experiment on how being purely functional influences the runtime and use of an applicative order purely functional language. While things have been added to Scheme, Owl tries to keep the core language as simple as possible. Implementationwise the goal was to get a small portable system which could be used to ship programs easily. This is currently accomplished by using a small register-based virtual machine, which can be extended with program-specific instructions to reduce interpretive overhead.
Diffstat (limited to 'lang/owl-lisp/Makefile')
-rw-r--r--lang/owl-lisp/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/lang/owl-lisp/Makefile b/lang/owl-lisp/Makefile
new file mode 100644
index 00000000000..33e8ce33cbe
--- /dev/null
+++ b/lang/owl-lisp/Makefile
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1 2017/02/11 01:40:27 kamil Exp $
+
+DISTNAME= owl-lisp-0.1.13
+CATEGORIES= lang
+MASTER_SITES= ${MASTER_SITE_GITHUB:=aoh/}
+GITHUB_TAG= v${PKGVERSION_NOREV}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= https://haltp.org/n/owl
+COMMENT= Purely functional dialect of Scheme
+LICENSE= mit
+
+MANCOMPRESSED= yes
+
+MAKE_ENV= MANDIR=/${PKGMANDIR}
+
+.include "../../mk/bsd.pkg.mk"