summaryrefslogtreecommitdiff
path: root/lang/focal/Makefile
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2003-09-11 17:15:02 +0000
committerdrochner <drochner@pkgsrc.org>2003-09-11 17:15:02 +0000
commit5d325eb390c33b293ace1c4cc1ac80eb7c0f7d29 (patch)
treeaa941aa171e2405d351b7067c52eb051f9d866b4 /lang/focal/Makefile
parentf153d993bb1a68de0e24e0aa5665f9dc56434c13 (diff)
downloadpkgsrc-5d325eb390c33b293ace1c4cc1ac80eb7c0f7d29.tar.gz
import a portable FOCAL clone -- FOCAL is an interpreted programming
language (not unlike BASIC) which was developped by DEC for the PDP-8, and later popular also on PDP-11 under RT-11
Diffstat (limited to 'lang/focal/Makefile')
-rw-r--r--lang/focal/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/lang/focal/Makefile b/lang/focal/Makefile
new file mode 100644
index 00000000000..8d1b80681de
--- /dev/null
+++ b/lang/focal/Makefile
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/09/11 17:15:02 drochner Exp $
+#
+
+DISTNAME= focal
+PKGNAME= focal81-0
+CATEGORIES= lang
+MASTER_SITES= http://home.tiscali.be/be042720/44/
+
+MAINTAINER= tech-pkg@NetBSD.org
+HOMEPAGE= http://home.tiscali.be/be042720/44/focal.htm
+COMMENT= Interpreted programming language
+
+USE_BUILDLINK2= yes
+
+FOCALDOCDIR= ${PREFIX}/share/doc/focal
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/focal ${PREFIX}/bin
+ ${INSTALL_DATA_DIR} ${FOCALDOCDIR}
+ for i in focal.doc queens.foc sieve.foc; do \
+ ${INSTALL_DATA} ${WRKSRC}/$$i ${FOCALDOCDIR}; \
+ done
+
+.include "../../mk/bsd.pkg.mk"