summaryrefslogtreecommitdiff
path: root/lang/brandybasic/Makefile
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2000-12-06 15:13:11 +0000
committerabs <abs@pkgsrc.org>2000-12-06 15:13:11 +0000
commitd949a6ad8ba0dc839ff0a83e7fcd0f8473e33c03 (patch)
tree1c0addad21cba4793e45b464952e5b9be3b39db0 /lang/brandybasic/Makefile
parentb033a6bbb53ecfcd41fb779ca620e34e6a7a37a6 (diff)
downloadpkgsrc-d949a6ad8ba0dc839ff0a83e7fcd0f8473e33c03.tar.gz
Import version 1.05 of Dave Daniels Brandy BBC Basic Interpreter
Brandy is an interpreter for BBC Basic (or Basic V as it is refered to here) that runs under a variety of operating systems. Basic V is the version of Basic supplied with desktop computers running RISC OS. These were originally made by Acorn Computers but are now designed and manufactured by companies such as RiscStation and MicroDigital.
Diffstat (limited to 'lang/brandybasic/Makefile')
-rw-r--r--lang/brandybasic/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/lang/brandybasic/Makefile b/lang/brandybasic/Makefile
new file mode 100644
index 00000000000..fddb18a827f
--- /dev/null
+++ b/lang/brandybasic/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/12/06 15:13:11 abs Exp $
+#
+
+DISTNAME= b105
+PKGNAME= brandybasic-1.05
+CATEGORIES= lang
+MASTER_SITES= http://www.argonet.co.uk/users/dave_daniels/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= abs
+HOMEPAGE= http://www.argonet.co.uk/users/dave_daniels/
+
+WRKSRC= ${WRKDIR}/brandy-105
+
+DOCDIR= ${PREFIX}/share/doc/brandy
+EXAMPLEDIR= ${PREFIX}/share/examples/brandy
+
+MAKEFILE= makefile
+
+do-install:
+ ${MKDIR} ${DOCDIR}
+ ${MKDIR} ${EXAMPLEDIR}
+ cd ${WRKSRC}/docs && ${GTAR} -cf - `ls |grep -v .orig` | (cd ${DOCDIR} && tar xf -)
+ cd ${WRKSRC}/examples && ${GTAR} -cf - [a-z]* | (cd ${EXAMPLEDIR} && tar xf -)
+ ${INSTALL_PROGRAM} ${WRKSRC}/brandy ${PREFIX}/bin/brandy
+
+.include "../../mk/bsd.pkg.mk"