gnu: butt: Use G-expressions.
* gnu/packages/audio.scm (butt)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
cb8e483c78
commit
027c21dcf7
1 changed files with 9 additions and 9 deletions
|
@ -5466,15 +5466,15 @@ while still staying in time.")
|
||||||
((".*zica.*") "")))))
|
((".*zica.*") "")))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list #:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-documentation
|
(add-after 'install 'install-documentation
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let ((doc (string-append #$output "/share/doc/"
|
||||||
(manual (assoc-ref inputs "manual"))
|
#$name "-" #$version)))
|
||||||
(doc (string-append out "/share/doc/" ,name "-" ,version)))
|
|
||||||
(install-file "README" doc)
|
(install-file "README" doc)
|
||||||
(copy-file manual (string-append doc "/butt-manual.pdf"))))))))
|
(copy-file #$(this-package-native-input "manual")
|
||||||
|
(string-append doc "/butt-manual.pdf"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("manual"
|
("manual"
|
||||||
|
|
Reference in a new issue