gnu: emacs-consult: Fix grammar.
[jackhill/guix/guix.git] / gnu / packages / ncurses.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
528ea990 2;;; Copyright © 2012, 2013, 2014, 2015, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
d230cf61 3;;; Copyright © 2014, 2016 Mark H Weaver <mhw@netris.org>
625e7cd6 4;;; Copyright © 2015, 2017 Leo Famulari <leo@famulari.name>
3c986a7d 5;;; Copyright © 2016 Nikita <nikita@n0.is>
c76dab7b 6;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
d230cf61 7;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
7688dbbd 8;;; Copyright © 2017, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
da71a77c 9;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
0f96fd64 10;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
c44899a2 11;;;
233e7676 12;;; This file is part of GNU Guix.
c44899a2 13;;;
233e7676 14;;; GNU Guix is free software; you can redistribute it and/or modify it
c44899a2
LC
15;;; under the terms of the GNU General Public License as published by
16;;; the Free Software Foundation; either version 3 of the License, or (at
17;;; your option) any later version.
18;;;
233e7676 19;;; GNU Guix is distributed in the hope that it will be useful, but
c44899a2
LC
20;;; WITHOUT ANY WARRANTY; without even the implied warranty of
21;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;;; GNU General Public License for more details.
23;;;
24;;; You should have received a copy of the GNU General Public License
233e7676 25;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
c44899a2 26
1ffa7090 27(define-module (gnu packages ncurses)
d230cf61 28 #:use-module (gnu packages)
4a44e743 29 #:use-module (guix licenses)
c44899a2 30 #:use-module (guix packages)
87f5d366 31 #:use-module (guix download)
b393a44c 32 #:use-module (guix build-system gnu)
33 #:use-module (guix build-system perl)
34 #:use-module (gnu packages)
c76dab7b 35 #:use-module (gnu packages perl)
57742b35 36 #:use-module (gnu packages pkg-config)
d230cf61 37 #:use-module (gnu packages swig)
c67d8056 38 #:use-module (gnu packages linux)
d230cf61 39 #:use-module (guix utils))
c44899a2
LC
40
41(define-public ncurses
d230cf61
MW
42 (package
43 (name "ncurses")
717c433c 44 (version "6.2")
d230cf61 45 (source (origin
87f5d366 46 (method url-fetch)
0db342a5 47 (uri (string-append "mirror://gnu/ncurses/ncurses-"
667082d5
MB
48 (car (string-split version #\-))
49 ".tar.gz"))
c44899a2
LC
50 (sha256
51 (base32
717c433c 52 "17bcm2z1rdx5gmzj5fb8cp7f28aw5b4g2z4qvvqg3yg0fq66wc1h"))))
d230cf61
MW
53 (build-system gnu-build-system)
54 (outputs '("out"
55 "doc")) ;1 MiB of man pages
56 (arguments
57 (let ((patch-makefile-phase
58 '(lambda _
59 (for-each patch-makefile-SHELL
5170bbd5
TGR
60 (find-files "." "Makefile.in"))
61 #t))
d230cf61
MW
62 (configure-phase
63 ;; The 'configure' script does not understand '--docdir', so we must
64 ;; override that and use '--mandir' instead.
65 '(lambda* (#:key build target outputs configure-flags
66 #:allow-other-keys)
67 (let ((out (assoc-ref outputs "out"))
68 (doc (assoc-ref outputs "doc")))
5170bbd5
TGR
69 (apply invoke "./configure"
70 (string-append "SHELL=" (which "sh"))
71 (string-append "--build=" build)
72 (string-append "--prefix=" out)
73 (string-append "--mandir=" doc "/share/man")
74 (if target
75 (cons (string-append "--host=" target)
76 configure-flags)
77 configure-flags))
78 #t)))
667082d5 79 (apply-rollup-patch-phase
784d3b7e
MB
80 ;; Ncurses distributes "stable" patchsets to be applied on top
81 ;; of the release tarball. These are only available as shell
82 ;; scripts(!) so we decompress and apply them in a phase.
83 ;; See <https://invisible-mirror.net/archives/ncurses/6.1/README>.
11b9a223
LC
84 '(lambda* (#:key inputs native-inputs #:allow-other-keys)
85 (copy-file (assoc-ref (or native-inputs inputs) "rollup-patch")
667082d5 86 (string-append (getcwd) "/rollup-patch.sh.bz2"))
5170bbd5 87 (invoke "bzip2" "-d" "rollup-patch.sh.bz2")
1bd36436 88 (invoke "sh" "rollup-patch.sh")))
d230cf61
MW
89 (remove-shebang-phase
90 '(lambda _
91 ;; To avoid retaining a reference to the bootstrap Bash via the
92 ;; shebang of the 'ncursesw6-config' script, simply remove that
93 ;; shebang: it'll work just as well without it. Likewise, do not
94 ;; retain a reference to the "doc" output.
95 (substitute* "misc/ncurses-config.in"
96 (("#!@SHELL@")
97 "# No shebang here, use /bin/sh!\n")
98 (("@SHELL@ \\$0")
99 "$0")
100 (("mandir=.*$")
101 "mandir=share/man"))
102 #t))
103 (post-install-phase
104 `(lambda* (#:key outputs #:allow-other-keys)
105 (let ((out (assoc-ref outputs "out")))
106 ;; When building a wide-character (Unicode) build, create backward
107 ;; compatibility links from the the "normal" libraries to the
74288230 108 ;; wide-character ones (e.g. libncurses.so to libncursesw.so).
d230cf61
MW
109 ,@(if (target-mingw?)
110 '( ;; TODO: create .la files to link to the .dll?
111 (with-directory-excursion (string-append out "/bin")
112 (for-each
113 (lambda (lib)
114 (define lib.dll
115 (string-append "lib" lib ".dll"))
116 (define libw6.dll
117 (string-append "lib" lib "w6.dll"))
118
119 (when (file-exists? libw6.dll)
120 (format #t "creating symlinks for `lib~a'~%" lib)
121 (symlink libw6.dll lib.dll)))
122 '("curses" "ncurses" "form" "panel" "menu"))))
123 '())
124 (with-directory-excursion (string-append out "/lib")
125 (for-each (lambda (lib)
126 (define libw.a
127 (string-append "lib" lib "w.a"))
128 (define lib.a
129 (string-append "lib" lib ".a"))
130
131 ,@(if (not (target-mingw?))
132 '((define libw.so.x
133 (string-append "lib" lib "w.so.6"))
134 (define lib.so.x
135 (string-append "lib" lib ".so.6"))
136 (define lib.so
74288230
LF
137 (string-append "lib" lib ".so"))
138 (define packagew.pc
139 (string-append lib "w.pc"))
140 (define package.pc
141 (string-append lib ".pc")))
d230cf61 142 '())
c44899a2 143
d230cf61
MW
144 (when (file-exists? libw.a)
145 (format #t "creating symlinks for `lib~a'~%" lib)
146 (symlink libw.a lib.a)
147 ,@(if (not (target-mingw?))
148 '((symlink libw.so.x lib.so.x)
149 (false-if-exception (delete-file lib.so))
150 (call-with-output-file lib.so
151 (lambda (p)
74288230
LF
152 (format p "INPUT (-l~aw)~%" lib)))
153 (with-directory-excursion "pkgconfig"
154 (format #t "creating symlink for `~a'~%"
155 package.pc)
156 (when (file-exists? packagew.pc)
157 (symlink packagew.pc package.pc))))
d230cf61 158 '())))
5170bbd5
TGR
159 '("curses" "ncurses" "form" "panel" "menu")))
160 #t))))
d230cf61
MW
161 `(#:configure-flags
162 ,(cons*
163 'quasiquote
164 `(("--with-shared" "--without-debug" "--enable-widec"
165
74288230
LF
166 "--enable-pc-files"
167 ,(list 'unquote '(string-append "--with-pkg-config-libdir="
168 (assoc-ref %outputs "out")
169 "/lib/pkgconfig"))
57742b35 170
d230cf61
MW
171 ;; By default headers land in an `ncursesw' subdir, which is not
172 ;; what users expect.
173 ,(list 'unquote '(string-append "--includedir=" (assoc-ref %outputs "out")
174 "/include"))
175 "--enable-overwrite" ;really honor --includedir
c44899a2 176
d230cf61
MW
177 ;; Make sure programs like 'tic', 'reset', and 'clear' have a
178 ;; correct RUNPATH.
179 ,(list 'unquote '(string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out")
180 "/lib"))
b0ff3606
LC
181
182 ;; Starting from ncurses 6.1, "make install" runs "install -s"
183 ;; by default, which doesn't work for cross-compiled binaries
184 ;; because it invokes 'strip' instead of 'TRIPLET-strip'. Work
185 ;; around this.
186 ,@(if (%current-target-system) '("--disable-stripping") '())
187
7688dbbd
MB
188 ;; Do not assume a default search path in ld, even if it is only to
189 ;; filter it out in ncurses-config. Mainly because otherwise it ends
190 ;; up using the libdir from binutils, which makes little sense and
191 ;; causes an unnecessary runtime dependency.
192 "cf_cv_ld_searchpath=/no-ld-searchpath"
193
d230cf61
MW
194 ;; MinGW: Use term-driver created for the MinGW port.
195 ,@(if (target-mingw?) '("--enable-term-driver") '()))))
196 #:tests? #f ; no "check" target
197 #:phases (modify-phases %standard-phases
198 (replace 'configure ,configure-phase)
199 (add-after 'install 'post-install
200 ,post-install-phase)
201 (add-before 'configure 'patch-makefile-SHELL
202 ,patch-makefile-phase)
1bd36436 203 (add-before 'patch-source-shebangs 'remove-unneeded-shebang
d230cf61 204 ,remove-shebang-phase)))))
667082d5 205 (native-inputs
528ea990
LC
206 `(,@(if (%current-target-system)
207 `(("self" ,this-package)) ;for `tic'
208 '())
209 ("pkg-config" ,pkg-config)))
d230cf61
MW
210 (native-search-paths
211 (list (search-path-specification
212 (variable "TERMINFO_DIRS")
213 (files '("share/terminfo")))))
214 (synopsis "Terminal emulation (termcap, terminfo) library")
215 (description
216 "GNU Ncurses is a library which provides capabilities to write text to
79c311b8 217a terminal in a terminal-independent manner. It supports pads and color as
a22dc0c4 218well as multiple highlights and forms characters. It is typically used to
79c311b8
LC
219implement user interfaces for command-line applications. The accompanying
220ncursesw library provides wide character support.")
d230cf61 221 (license x11)
6fd52309 222 (home-page "https://www.gnu.org/software/ncurses/")))
44298269 223
c67d8056
MW
224(define-public ncurses/gpm
225 (package/inherit ncurses
226 (name "ncurses-with-gpm")
227 (arguments
228 (substitute-keyword-arguments (package-arguments ncurses)
229 ((#:configure-flags cf)
230 `(cons (string-append "--with-gpm="
231 (assoc-ref %build-inputs "gpm")
232 "/lib/libgpm.so.2")
233 ,cf))))
234 (inputs
235 `(("gpm" ,gpm)))))
236
44298269
LF
237(define-public dialog
238 (package
239 (name "dialog")
477649c6 240 (version "1.3-20201126")
44298269
LF
241 (source (origin
242 (method url-fetch)
243 (uri (string-append
89e1b270 244 "https://invisible-mirror.net/archives/dialog/dialog-"
44298269
LF
245 version ".tgz"))
246 (sha256
247 (base32
477649c6 248 "0riqmp2xl2j2yxx69nyg8jbm2fyi5fp4clcf6zi5jfm3irn3l8y9"))))
44298269 249 (build-system gnu-build-system)
44298269
LF
250 (inputs
251 `(("ncurses" ,ncurses)))
252 (synopsis "Curses widgets")
253 (description "Dialog is a script-interpreter which provides a set of
254curses widgets, such as dialog boxes.")
432fd269 255 (home-page "https://invisible-island.net/dialog/dialog.html")
44298269
LF
256 ;; Includes the gpl3 file "config.sub" from Automake.
257 (license (list lgpl2.1 gpl3))))
b393a44c 258
259(define-public perl-curses
260 (package
261 (name "perl-curses")
262 (version "1.36")
263 (source
264 (origin
265 (method url-fetch)
266 (uri (string-append "mirror://cpan/authors/id/G/GI/GIRAFFED/"
267 "Curses-" version ".tar.gz"))
268 (sha256
269 (base32
270 "0r6xd9wr0c25rr28zixhqipak575zqsfb7r7f2693i9il1dpj554"))))
271 (build-system perl-build-system)
272 (inputs
273 `(("ncurses" ,ncurses)))
274 (arguments
275 `(#:make-maker-flags (list "PANELS" "MENUS")
276 #:phases
277 (modify-phases %standard-phases
278 (add-before
279 'configure 'set-curses-ldflags
280 (lambda* (#:key inputs #:allow-other-keys)
281 (let* ((ncurses (assoc-ref inputs "ncurses"))
282 (include (string-append ncurses "/include"))
283 (lib (string-append ncurses "/lib")))
284 (setenv "CURSES_LIBTYPE" "ncurses")
285 (setenv "CURSES_CFLAGS" (string-append "-I" include))
286 (setenv "CURSES_PANEL_CFLAGS" (string-append "-I" include))
287 (setenv "CURSES_MENU_CFLAGS" (string-append "-I" include))
288 (setenv "CURSES_FORM_CFLAGS" (string-append "-I" include))
289 (setenv "CURSES_LDFLAGS" (string-append "-L" lib " -lncurses"))
290 (setenv "CURSES_PANEL_LDFLAGS" (string-append "-L" lib " -lpanel"))
291 (setenv "CURSES_MENU_LDFLAGS" (string-append "-L" lib " -lmenu"))
292 (setenv "CURSES_FORM_LDFLAGS" (string-append "-L" lib " -lform"))
293 #t))))))
9aba9b12 294 (home-page "https://metacpan.org/release/Curses")
b393a44c 295 (synopsis "Terminal screen handling and optimization")
296 (description
297 "@code{Curses} is the interface between Perl and the curses library
298of your system.")
2f3108ad 299 (license perl-license)))
c76dab7b
EF
300
301(define-public stfl
302 (package
303 (name "stfl")
304 (version "0.24")
305 (source
306 (origin
307 (method url-fetch)
308 (uri (string-append "http://www.clifford.at/stfl/stfl-"
309 version ".tar.gz"))
310 (sha256
311 (base32
312 "1460d5lc780p3q38l3wc9jfr2a7zlyrcra0li65aynj738cam9yl"))))
313 (build-system gnu-build-system)
314 (arguments
315 '(#:tests? #f ; no test target
316 #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
317 #:phases
318 (modify-phases %standard-phases
319 (delete 'configure) ; there is no configure script
320 ;; in our ncurses, the headers are in /include
321 (add-before 'build 'patch-ncursesw
322 (lambda _
323 (substitute* "stfl_internals.h"
324 (("ncursesw/") ""))
325 #t))
326 (add-after 'install 'install-missing-symlink
327 (lambda* (#:key outputs #:allow-other-keys)
328 (let* ((out (assoc-ref outputs "out"))
329 (lib (string-append out "/lib")))
330 ;; Some programs look for libstfl.so.0.
331 (symlink "libstfl.so" (string-append lib "/libstfl.so.0"))))))))
332 (inputs `(("ncurses" ,ncurses)))
333 (native-inputs `(("swig" ,swig)))
334 (home-page "http://www.clifford.at/stfl/")
335 (synopsis "Structured terminal forms library")
336 (description "Stfl is a library which implements a curses-based widget
337set for text terminals.")
338 (license lgpl3+)))