gnu: kdoctools: Symlink some files referred to by different names.
* gnu/package/kde-frameworks.scm (kdoctools)[arguments] <#:phases>'add-symlinks': New phase.
This commit is contained in:
parent
b87633fc0f
commit
f96302abe7
|
@ -1474,6 +1474,15 @@ application crashes.")
|
||||||
(("^.*xml/docbook/stylesheet.*$")
|
(("^.*xml/docbook/stylesheet.*$")
|
||||||
(string-append "xml/xsl/docbook-xsl-"
|
(string-append "xml/xsl/docbook-xsl-"
|
||||||
,(package-version docbook-xsl) "\n")))
|
,(package-version docbook-xsl) "\n")))
|
||||||
|
#t))
|
||||||
|
(add-after 'install 'add-symlinks
|
||||||
|
;; Some package(s) (e.g. kdelibs4support) refer to this locale by a
|
||||||
|
;; different spelling.
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let ((xsl (string-append (assoc-ref outputs "out")
|
||||||
|
"/share/kf5/kdoctools/customization/xsl/")))
|
||||||
|
(symlink (string-append xsl "pt_br.xml")
|
||||||
|
(string-append xsl "pt-BR.xml")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "Create documentation from DocBook")
|
(synopsis "Create documentation from DocBook")
|
||||||
|
|
Loading…
Reference in New Issue