summaryrefslogtreecommitdiffstats
path: root/libraries/cheapglk/slack-desc
diff options
context:
space:
mode:
author B. Watson <urchlay@slackware.uk>2024-03-07 10:29:07 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2024-03-09 06:18:06 +0700
commit22202a79c98b89afc9d977ec0e80850dc93246ae (patch)
treed7932d16c630c56a00e1376438d1b0a80dfcfbe9 /libraries/cheapglk/slack-desc
parent1500b39f3c2d3d53ae94cd150732cfd311b68c73 (diff)
downloadslackbuilds-22202a79c98b89afc9d977ec0e80850dc93246ae.tar.gz
slackbuilds-22202a79c98b89afc9d977ec0e80850dc93246ae.tar.xz
libraries/cheapglk: Added (Cheapass Implementation of the Glk API).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--libraries/cheapglk/slack-desc19
1 files changed, 19 insertions, 0 deletions
diff --git a/libraries/cheapglk/slack-desc b/libraries/cheapglk/slack-desc
new file mode 100644
index 0000000000..f6fa0eb938
--- /dev/null
+++ b/libraries/cheapglk/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+cheapglk: cheapglk (cheapass implementation of the Glk API)
+cheapglk:
+cheapglk: This is the simplest possible implementation of the Glk API. It uses
+cheapglk: stdio.h calls (fopen, putc, getc), but not any of the curses.h calls
+cheapglk: (which handle cursor movement and unbuffered keyboard input.) So
+cheapglk: there's no way it can support multiple windows, or a status bar. In
+cheapglk: fact, this library only allows you to create *one* window at a time,
+cheapglk: and that must be a TextBuffer. Fortunately -- well, deliberately --
+cheapglk: TextBuffer windows are very simple; all the library has to be able to
+cheapglk: do is printf() straight to stdout.
+cheapglk: