diff options
author | jtb <jtb> | 2003-05-02 23:19:53 +0000 |
---|---|---|
committer | jtb <jtb> | 2003-05-02 23:19:53 +0000 |
commit | b9b5a2736a30da6e29b6e7814f8ec3d630eec56d (patch) | |
tree | eaa427a381b4255d2d6868a5929632c8bf6ad920 /lang/yabasic/Makefile | |
parent | 5403aef3fdaeb053cead643dc64d717b3feb257a (diff) | |
download | pkgsrc-b9b5a2736a30da6e29b6e7814f8ec3d630eec56d.tar.gz |
Initial import of yabasic. Submitted by David Ferlier in PR pkg/19785
with some minor modifications by me.
Yabasic implements the most common and simple elements of the basic language;
It comes with goto/gosub, with various loops, with user defined subroutines
and Libraries. Yabasic does monochrome line graphics and printing.
Yabasic runs under Unix and Windows; it is small (around 200KB) and free.
Diffstat (limited to 'lang/yabasic/Makefile')
-rw-r--r-- | lang/yabasic/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lang/yabasic/Makefile b/lang/yabasic/Makefile new file mode 100644 index 00000000000..e52ec9ab44a --- /dev/null +++ b/lang/yabasic/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/05/02 23:19:53 jtb Exp $ + +DISTNAME= yabasic-2.722 +CATEGORIES= lang +MASTER_SITES= http://www.yabasic.de/download/ + +MAINTAINER= david@netbsd-fr.org +HOMEPAGE= http://www.yabasic.de +COMMENT= Yet another Basic for Unix and Windows + +USE_X11= YES +USE_BUILDLINK2= YES +GNU_CONFIGURE= YES + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/yabasic + ${INSTALL_DATA} ${WRKSRC}/yabasic.htm \ + ${PREFIX}/share/doc/html/yabasic + +.include "../../devel/ncurses/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" |