gnu: Add external-program.
[jackhill/guix/guix.git] / gnu / packages / aspell.scm
CommitLineData
708d0ceb 1;;; GNU Guix --- Functional package management for GNU
22c334fa 2;;; Copyright © 2013, 2014, 2015, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
0833d0c0 3;;; Copyright © 2015, 2016 Alex Kost <alezost@gmail.com>
8553fe57 4;;; Copyright © 2016 John Darrington <jmd@gnu.org>
210e43c7 5;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
4cf9f57b 6;;; Copyright © 2016 Christopher Andersson <christopher@8bits.nu>
d109b1e8 7;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
8dbd8e42 8;;; Copyright © 2016, 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
964595dd 9;;; Copyright © 2019 Jens Mølgaard <jens@zete.tk>
708d0ceb
LC
10;;;
11;;; This file is part of GNU Guix.
12;;;
13;;; GNU Guix is free software; you can redistribute it and/or modify it
14;;; under the terms of the GNU General Public License as published by
15;;; the Free Software Foundation; either version 3 of the License, or (at
16;;; your option) any later version.
17;;;
18;;; GNU Guix is distributed in the hope that it will be useful, but
19;;; WITHOUT ANY WARRANTY; without even the implied warranty of
20;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;;; GNU General Public License for more details.
22;;;
23;;; You should have received a copy of the GNU General Public License
24;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
25
1ffa7090 26(define-module (gnu packages aspell)
708d0ceb
LC
27 #:use-module (guix packages)
28 #:use-module (guix download)
29 #:use-module (guix build-system gnu)
30 #:use-module (guix licenses)
a2908f5a 31 #:use-module (guix utils)
6d35b1c9 32 #:use-module (gnu packages)
085bcca3
LC
33 #:use-module (gnu packages base)
34 #:use-module (gnu packages compression)
cd37b144
JM
35 #:use-module (gnu packages perl)
36 #:use-module (ice-9 match))
708d0ceb
LC
37
38(define-public aspell
39 (package
40 (name "aspell")
4a822462 41 (version "0.60.6.1")
708d0ceb
LC
42 (source
43 (origin
44 (method url-fetch)
45 (uri (string-append "mirror://gnu/aspell/aspell-"
46 version ".tar.gz"))
47 (sha256
48 (base32
4a822462
EF
49 "1qgn5psfyhbrnap275xjfrzppf5a83fb67gpql0kfqv37al869gm"))
50 (patches (search-patches "aspell-default-dict-dir.patch"
51 "aspell-gcc-compat.patch"))))
708d0ceb 52 (build-system gnu-build-system)
81fc64da
FB
53 (arguments
54 `(#:phases
55 (modify-phases %standard-phases
a2908f5a
LC
56 (add-before 'build 'set-filter-path
57 (lambda* (#:key outputs #:allow-other-keys)
58 ;; Change the default value of 'filter-path' so that filters such
59 ;; as 'tex-filter.so' can be found. By default none of the
60 ;; filters would be found.
61 (let* ((out (assoc-ref outputs "out"))
62 (libdir (string-append out "/lib/aspell-"
63 ,(version-major+minor version))))
64 (substitute* "common/config.cpp"
65 (("\"filter-path(.*)DICT_DIR" _ middle)
66 (string-append "\"filter-path" middle
67 "\"" libdir "\"")))
68 #t)))
81fc64da
FB
69 (add-after 'install 'wrap-aspell
70 (lambda* (#:key outputs #:allow-other-keys)
71 (let ((bin/aspell (string-append (assoc-ref outputs "out")
72 "/bin/aspell")))
73 (wrap-program bin/aspell
74 '("ASPELL_CONF" "" =
d3da21d2
MW
75 ("${ASPELL_CONF:-\"dict-dir ${GUIX_PROFILE:-$HOME/.guix-profile}/lib/aspell\"}")))
76 #t))))))
708d0ceb 77 (inputs `(("perl" ,perl)))
6d35b1c9
LC
78
79 (native-search-paths
80 ;; This is a Guix-specific environment variable that takes a single
81 ;; entry, not an actual search path.
82 (list (search-path-specification
83 (variable "ASPELL_DICT_DIR")
84 (separator #f)
85 (files '("lib/aspell")))))
86
708d0ceb 87 (home-page "http://aspell.net/")
f50d2669 88 (synopsis "Spell checker")
708d0ceb 89 (description
a22dc0c4
LC
90 "Aspell is a spell-checker which can be used either as a library or as
91a standalone program. Notable features of Aspell include its full support of
92documents written in the UTF-8 encoding and its ability to use multiple
93dictionaries, including personal ones.")
708d0ceb 94 (license lgpl2.1+)))
15756a7a 95
15756a7a
LC
96;;;
97;;; Dictionaries.
98;;;
707ee324 99;;; Use 'export ASPELL_CONF="dict-dir $HOME/.guix-profile/lib/aspell"' to use
6d35b1c9
LC
100;;; them, or set the Guix-specific 'ASPELL_DICT_DIR', or just do nothing (as
101;;; long as 'HOME' is set, that's fine!).
15756a7a
LC
102;;;
103
104(define* (aspell-dictionary dict-name full-name
105 #:key version sha256 (prefix "aspell6-"))
106 (package
cd37b144
JM
107 (name (string-append
108 "aspell-dict-"
109 ;; Downcase and replace underscore in package names
110 ;; to follow Guix naming conventions.
111 (string-map (match-lambda
112 (#\_ #\-)
113 (chr chr))
114 (string-downcase dict-name))))
15756a7a
LC
115 (version version)
116 (source (origin
117 (method url-fetch)
118 (uri (string-append "mirror://gnu/aspell/dict/" dict-name
119 "/" prefix dict-name "-"
120 version ".tar.bz2"))
121 (sha256 sha256)))
122 (build-system gnu-build-system)
123 (arguments
707ee324
TGR
124 `(#:phases
125 (modify-phases %standard-phases
126 (replace 'configure
127 (lambda* (#:key outputs #:allow-other-keys)
128 (let ((out (assoc-ref outputs "out")))
5f55ca21 129 (invoke "./configure")))))
707ee324
TGR
130 #:make-flags
131 (let ((out (assoc-ref %outputs "out")))
132 (list (string-append "dictdir=" out "/lib/aspell")
133 (string-append "datadir=" out "/lib/aspell")))
134 #:tests? #f))
15756a7a
LC
135 (native-inputs `(("aspell" ,aspell)
136 ("which" ,which)))
137 (synopsis (string-append full-name " dictionary for GNU Aspell")) ; XXX: i18n
138 (description
139 "This package provides a dictionary for the GNU Aspell spell checker.")
140 (license gpl2+)
141 (home-page "http://aspell.net/")))
142
99b9857b 143
964595dd
JM
144(define-public aspell-dict-ar
145 (aspell-dictionary "ar" "Arabic"
146 #:version "1.2-0"
4a822462 147 #:prefix "aspell6-"
964595dd
JM
148 #:sha256
149 (base32
150 "1avw40bp8yi5bnkq64ihm2rldgw34lk89yz281q9bmndh95a47h4")))
151
8ac3476d
JM
152(define-public aspell-dict-be
153 (aspell-dictionary "be" "Belarusian"
154 #:version "0.01"
155 #:prefix "aspell5-"
156 #:sha256
157 (base32
158 "1svls9p7rsfi3hs0afh0cssj006qb4v1ik2yzqgj8hm10c6as2sm")))
159
99b9857b 160(define-public aspell-dict-ca
9b451091
TGR
161 (let ((version "2.5.0")
162 (sha256
163 (base32 "0kbi8fi7a1bys31kfqrlh332gyik0cfdmxgl7n15sa9c305rkgwq")))
164 (package
165 (inherit (aspell-dictionary "ca" "Catalan"
166 #:version version
167 #:sha256 sha256))
168 (source
169 (origin
170 (method url-fetch)
171 (uri (string-append "https://www.softcatala.org/pub/softcatala/aspell/"
172 version "/aspell6-ca-" version ".tar.bz2"))
173 (sha256 sha256)))
174 (home-page "https://www.softcatala.org/pub/softcatala/aspell/"))))
15756a7a 175
06550e07
JD
176(define-public aspell-dict-de
177 (aspell-dictionary "de" "German"
4dfc7369 178 #:version "20161207-7-0"
06550e07
JD
179 #:sha256
180 (base32
4dfc7369 181 "0wamclvp66xfmv5wff96v6gdlnfv4y8lx3f8wvxyzm5imwgms4n2")))
06550e07 182
4bb9528c
JM
183(define-public aspell-dict-da
184 (aspell-dictionary "da" "Danish"
185 #:version "1.4.42-1"
186 #:prefix "aspell5-"
187 #:sha256
188 (base32
189 "1hfkmiyhgrx5lgrb2mffjbdn1hivrm73wcg7x0iid74p2yb0fjpp")))
190
74a40ddd
EF
191(define-public aspell-dict-el
192 (aspell-dictionary "el" "Greek"
193 #:version "0.08-0"
194 #:prefix "aspell6-"
195 #:sha256
196 (base32
197 "1ljcc30zg2v2h3w5h5jr5im41mw8jbsgvvhdd2cii2yzi8d0zxja")))
198
15756a7a
LC
199(define-public aspell-dict-en
200 (aspell-dictionary "en" "English"
9d0abf0f 201 #:version "2019.10.06-0"
15756a7a
LC
202 #:sha256
203 (base32
9d0abf0f 204 "1zai9wrqwgb9z9vfgb22qhrvxvg73jg0ix44j1khm2f6m96lncr4")))
15756a7a
LC
205
206(define-public aspell-dict-eo
207 (aspell-dictionary "eo" "Esperanto"
208 #:version "2.1.20000225a-2"
209 #:sha256
210 (base32
211 "09vf0mbiicbmyb4bwb7v7lgpabnylg0wy7m3hlhl5rjdda6x3lj1")))
212
213(define-public aspell-dict-es
214 (aspell-dictionary "es" "Spanish"
215 #:version "1.11-2"
216 #:sha256
217 (base32
218 "1k5g328ac1hdpp6fsg57d8md6i0aqcwlszp3gbmp5706wyhpydmd")))
219
c066a050
JM
220(define-public aspell-dict-fi
221 (aspell-dictionary "fi" "Finnish"
222 #:version "0.7-0"
223 #:prefix "aspell6-"
224 #:sha256
225 (base32
226 "07d5s08ba4dd89cmwy9icc01i6fjdykxlb9ravmhdrhi8mxz1mzq")))
227
15756a7a
LC
228(define-public aspell-dict-fr
229 (aspell-dictionary "fr" "French"
230 #:version "0.50-3"
231 #:prefix "aspell-"
232 #:sha256
233 (base32
234 "14ffy9mn5jqqpp437kannc3559bfdrpk7r36ljkzjalxa53i0hpr")))
5d9ecd15 235
74a40ddd
EF
236(define-public aspell-dict-grc
237 (aspell-dictionary "grc" "Ancient Greek"
238 #:version "0.02-0"
5d9ecd15
AK
239 #:sha256
240 (base32
74a40ddd
EF
241 "1zxr8958v37v260fkqd4pg37ns5h5kyqm54hn1hg70wq5cz8h512")))
242
243(define-public aspell-dict-he
244 (aspell-dictionary "he" "Hebrew"
245 #:version "1.0-0"
246 #:sha256
247 (base32
248 "13bhbghx5b8g0119g3wxd4n8mlf707y41vlf59irxjj0kynankfn")))
3a6a0f60 249
77fe5258
JM
250(define-public aspell-dict-hi
251 (aspell-dictionary "hi" "Hindi"
252 #:version "0.02-0"
253 #:prefix "aspell6-"
254 #:sha256
255 (base32
256 "0drs374qz4419zx1lf2k281ydxf2750jk5ailafj1x0ncz27h1ys")))
257
3a6a0f60 258(define-public aspell-dict-it
8dbd8e42
TGR
259 (let ((version "2.4-20070901-0")
260 (sha256
261 (base32 "0d6ypii3jblprpibazb6ypady536jz62rwxlss1x1raq07rhvvqn")))
262 (package
263 (inherit (aspell-dictionary "it" "Italian"
264 #:version version
265 #:sha256 sha256))
266
267 ;; The version hosted at <https://ftp.gnu.org/gnu/aspell/dict> is even
268 ;; more out of date.
269 (source
270 (origin
271 (method url-fetch)
272 (uri (string-append "mirror://sourceforge/linguistico/"
273 "Dizionario%20italiano%20per%20Aspell/" version "/"
274 "aspell6-it-" version ".tar.bz2"))
275 (sha256 sha256)))
276 (home-page
277 "http://linguistico.sourceforge.net/pages/dizionario_italiano.html"))))
467c498b 278
c5a88aa0
JM
279(define-public aspell-dict-mi
280 (aspell-dictionary "mi" "Maori"
281 #:version "0.50-0"
282 #:sha256
283 (base32
284 "12bxplpd348yx8d2q8qvahi9dlp7qf28qmanzhziwc7np8rixvmy")))
285
467c498b
JR
286(define-public aspell-dict-nl
287 (aspell-dictionary "nl" "Dutch"
288 #:version "0.50-2"
289 #:prefix "aspell-"
290 #:sha256
291 (base32
292 "0ffb87yjsh211hllpc4b9khqqrblial4pzi1h9r3v465z1yhn3j4")))
8553fe57 293
c9400f03
JM
294(define-public aspell-dict-nn
295 (aspell-dictionary "nn" "Norwegian Nynorsk"
296 #:version "0.50.1-1"
297 #:sha256
298 (base32
299 "0w2k5l5rbqpliripgqwiqixz5ghnjf7i9ggbrc4ly4vy1ia10rmc")))
300
74a40ddd 301(define-public aspell-dict-pt-br
cd37b144 302 (aspell-dictionary "pt_BR" "Brazilian Portuguese"
947141fd 303 #:version "20131030-12-0"
8553fe57
EF
304 #:sha256
305 (base32
947141fd 306 "1xqlpk21s93c6blkdnpk7l62q9fxjvzdv2x86chl8p2x1gdrj3gb")))
74a40ddd 307
a1fa54f0 308(define-public aspell-dict-pt-pt
cd37b144 309 (aspell-dictionary "pt_PT" "Portuguese"
9eb6d712 310 #:version "20190329-1-0"
a1fa54f0
JM
311 #:sha256
312 (base32
9eb6d712 313 "0ld0d0ily4jqifjfsxfv4shbicz6ymm2gk56fq9gbzra1j4qnw75")))
a1fa54f0 314
74a40ddd
EF
315(define-public aspell-dict-ru
316 (aspell-dictionary "ru" "Russian"
317 #:version "0.99f7-1"
318 #:sha256
319 (base32
320 "0ip6nq43hcr7vvzbv4lwwmlwgfa60hrhsldh9xy3zg2prv6bcaaw")))
4cf9f57b
CA
321
322(define-public aspell-dict-sv
323 (aspell-dictionary "sv" "Swedish"
324 #:version "0.51-0"
325 #:prefix "aspell-"
326 #:sha256
327 (base32
328 "02jwkjhr32kvyibnyzgx3smbnm576jwdzg3avdf6zxwckhy5fw4v")))
850812de 329
e77dd15a
JM
330(define-public aspell-dict-uk
331 (aspell-dictionary "uk" "Ukrainian"
332 #:version "1.4.0-0"
333 #:sha256
334 (base32
335 "137i4njvnslab6l4s291s11xijr5jsy75lbdph32f9y183lagy9m")))
336
085bcca3
LC
337\f
338;;;
339;;; Hunspell packages made from the Aspell word lists.
340;;;
341
342(define* (aspell-word-list language synopsis
343 #:optional
344 (nick (string-map (lambda (chr)
345 (if (char=? #\_ chr)
346 #\-
347 chr))
348 (string-downcase language))))
349 (package
350 (name (string-append "hunspell-dict-" nick))
210e43c7 351 (version "2018.04.16")
085bcca3
LC
352 (source (origin
353 (method url-fetch)
354 (uri (string-append
355 "http://downloads.sourceforge.net/wordlist/scowl-"
356 version ".tar.gz"))
357 (sha256
358 (base32
210e43c7 359 "11lkrnhwrf5mvrrq45k4mads3n9aswgac8dc25ba61c75alxb5rs"))))
085bcca3
LC
360 (native-inputs
361 `(("tar" ,tar)
362 ("gzip" ,gzip)
363 ("perl" ,perl)
364 ("aspell" ,aspell)))
365 (build-system gnu-build-system)
366 (arguments
367 `(#:phases
368 (modify-phases %standard-phases
369 (delete 'configure)
370 (delete 'check)
371 (replace 'build
372 (lambda _
373 (substitute* "speller/make-hunspell-dict"
374 (("zip -9 .*$")
375 "return\n"))
376 (mkdir "speller/hunspell")
377
378 ;; XXX: This actually builds all the dictionary variants.
210e43c7 379 (invoke "make" "-C" "speller" "hunspell")))
085bcca3
LC
380 (replace 'install
381 (lambda* (#:key outputs #:allow-other-keys)
382 (let* ((out (assoc-ref %outputs "out"))
383 (hunspell (string-append out "/share/hunspell"))
384 (myspell (string-append out "/share/myspell"))
385 (doc (string-append out "/share/doc/"
22c334fa
LC
386 ,name))
387 (dot-dic ,(string-append "speller/" language ".dic")))
085bcca3 388 (mkdir-p myspell)
22c334fa
LC
389
390 ;; Usually there's only a 'LANGUAGE.dic' file, but for the "en"
391 ;; dictionary, there no 'en.dic'. Instead, there's a set of
392 ;; 'en*.dic' files, hence the 'find-files' call below.
393 (if (file-exists? dot-dic)
394 (install-file dot-dic hunspell)
395 (for-each (lambda (dic)
396 (install-file dic hunspell))
397 (find-files "speller"
398 ,(string-append language ".*\\.dic$"))))
399
085bcca3
LC
400 (install-file ,(string-append "speller/" language ".aff")
401 hunspell)
402 (symlink hunspell (string-append myspell "/dicts"))
403 (for-each (lambda (file)
404 (install-file file doc))
405 (find-files "."
406 "^(Copyright|.*\\.(txt|org|md))$"))
407 #t))))))
408 (synopsis synopsis)
409 (description
410 "This package provides a dictionary for the Hunspell spell-checking
411library.")
412 (home-page "http://wordlist.aspell.net/")
413 (license (non-copyleft "file://Copyright"
414 "Word lists come from several sources, all
415under permissive licensing terms. See the 'Copyright' file."))))
416
417(define-syntax define-word-list-dictionary
418 (syntax-rules (synopsis)
419 ((_ name language (synopsis text))
420 (define-public name
421 (aspell-word-list language text)))
422 ((_ name language nick (synopsis text))
423 (define-public name
424 (aspell-word-list language text nick)))))
425
426(define-word-list-dictionary hunspell-dict-en
427 "en"
428 (synopsis "Hunspell dictionary for English"))
429
430(define-word-list-dictionary hunspell-dict-en-au
431 "en_AU"
432 (synopsis "Hunspell dictionary for Australian English"))
433
434(define-word-list-dictionary hunspell-dict-en-ca
435 "en_CA"
436 (synopsis "Hunspell dictionary for Canadian English"))
437
438(define-word-list-dictionary hunspell-dict-en-gb
439 "en_GB-ise" "en-gb"
440 (synopsis "Hunspell dictionary for British English, with -ise endings"))
441
442(define-word-list-dictionary hunspell-dict-en-gb-ize
443 "en_GB-ize"
444 (synopsis "Hunspell dictionary for British English, with -ize endings"))
445
446(define-word-list-dictionary hunspell-dict-en-us
447 "en_US"
448 (synopsis "Hunspell dictionary for United States English"))