mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 23:44:01 +02:00
e5f85dc0c1
A set of methods for processing keyboard input in character, line and multiline modes. It maintains history of entered input with an ability to recall and re-edit those inputs. It lets you register to listen for keystroke events and trigger custom key events yourself. OK jeremy@
21 lines
478 B
Makefile
21 lines
478 B
Makefile
COMMENT = process keyboard input
|
|
|
|
DISTNAME = tty-reader-0.9.0
|
|
CATEGORIES = sysutils
|
|
HOMEPAGE = https://ttytoolkit.org/
|
|
MAINTAINER = Sebastian Reitenbach <sebastia@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/ruby
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
BUILD_DEPENDS += ${RUN_DEPENDS}
|
|
RUN_DEPENDS += devel/ruby-wisper,${MODRUBY_FLAVOR},>2,<3 \
|
|
sysutils/ruby-tty-cursor,${MODRUBY_FLAVOR}>=0.7,<1 \
|
|
sysutils/ruby-tty-screen,${MODRUBY_FLAVOR}>=0.8,<1
|
|
|
|
.include <bsd.port.mk>
|