gnu: kdoctools: Use G-expressions.
* gnu/packages/kde-frameworks.scm (kdoctools)[arguments]: Rewrite as G-expressions. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>master
parent
16bea255c7
commit
e6d22dfbe9
|
@ -1705,8 +1705,9 @@ application crashes.")
|
||||||
perl-uri
|
perl-uri
|
||||||
qtbase-5))
|
qtbase-5))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'cmake-find-docbook
|
(add-after 'unpack 'cmake-find-docbook
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* (find-files "cmake" "\\.cmake$")
|
(substitute* (find-files "cmake" "\\.cmake$")
|
||||||
|
@ -1718,7 +1719,8 @@ application crashes.")
|
||||||
(substitute* "cmake/FindDocBookXSL.cmake"
|
(substitute* "cmake/FindDocBookXSL.cmake"
|
||||||
(("^.*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")))))
|
||||||
(add-after 'install 'add-symlinks
|
(add-after 'install 'add-symlinks
|
||||||
;; Some package(s) (e.g. kdelibs4support) refer to this locale by a
|
;; Some package(s) (e.g. kdelibs4support) refer to this locale by a
|
||||||
;; different spelling.
|
;; different spelling.
|
||||||
|
|
Reference in New Issue