gnu: aspell: Allow filters to be found.
Reported by Pierre-Antoine Rouby. * gnu/packages/aspell.scm (aspell)[arguments]: Add 'set-filter-path' phase.
This commit is contained in:
parent
10df28d74d
commit
a2908f5aae
@ -27,6 +27,7 @@
|
|||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
|
#:use-module (guix utils)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
@ -49,6 +50,19 @@
|
|||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'set-filter-path
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
;; Change the default value of 'filter-path' so that filters such
|
||||||
|
;; as 'tex-filter.so' can be found. By default none of the
|
||||||
|
;; filters would be found.
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(libdir (string-append out "/lib/aspell-"
|
||||||
|
,(version-major+minor version))))
|
||||||
|
(substitute* "common/config.cpp"
|
||||||
|
(("\"filter-path(.*)DICT_DIR" _ middle)
|
||||||
|
(string-append "\"filter-path" middle
|
||||||
|
"\"" libdir "\"")))
|
||||||
|
#t)))
|
||||||
(add-after 'install 'wrap-aspell
|
(add-after 'install 'wrap-aspell
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((bin/aspell (string-append (assoc-ref outputs "out")
|
(let ((bin/aspell (string-append (assoc-ref outputs "out")
|
||||||
|
Loading…
Reference in New Issue
Block a user