(define-module (gnu packages libtermkey) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix licenses) #:use-module (gnu packages autotools) #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config)) (define-public libtermkey (package (name "libtermkey") (version "0.18") (source (origin (method url-fetch) (uri "http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.18.tar.gz") (sha256 (base32 "09ir16kaarv55mnc4jn2sqnjjhzpb1aha51wpd9ayif887g4d5r3")))) (build-system gnu-build-system) (arguments '( #:make-flags (list "CC=gcc" (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases (delete 'configure)) #:tests? #f)) (inputs `()) (native-inputs `(("libtool", libtool) ("ncurses", ncurses) ("pkg-config", pkg-config))) (synopsis "Keyboard entry processing libary for terminal-based programs") (description (string-append "Libtermkey handles all the necessary logic to recognise special keys, " "UTF-8 combining, and so on, with a simple interface.")) (home-page "http://www.leonerd.org.uk/code/libtermkey") (license expat)))