diff options
Diffstat (limited to 'packages/nonworking/screen/screen_4.0.1.bb')
-rw-r--r-- | packages/nonworking/screen/screen_4.0.1.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/nonworking/screen/screen_4.0.1.bb b/packages/nonworking/screen/screen_4.0.1.bb index e69de29bb2..c2cd758dde 100644 --- a/packages/nonworking/screen/screen_4.0.1.bb +++ b/packages/nonworking/screen/screen_4.0.1.bb @@ -0,0 +1,18 @@ +SECTION = "console/utils" +DEPENDS = "ncurses" +DESCRIPTION = "Screen is a full-screen window manager \ +that multiplexes a physical terminal between several \ +processes, typically interactive shells." +LICENSE = "GPL" +SRC_URI = "ftp://ftp.uni-erlangen.de/pub/utilities/screen/screen-${PV}.tar.gz \ + file://configure.patch;patch=1" + +inherit autotools + +EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 --disable-pam" + +do_configure_prepend () { + for f in comm.h kmapdef.c term.h tty.c; do + cp ${S}/$f.dist ${S}/$f + done +} |