packages: wm: Add an install-documentation phase to rivercarro
parent
f537322ba4
commit
a5d452860a
|
@ -35,7 +35,12 @@
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f
|
(list #:tests? #f
|
||||||
#:phases #~(modify-phases %standard-phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
(delete 'validate-runpath))))
|
(delete 'validate-runpath)
|
||||||
|
(add-after 'install 'install-documentation
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(man (string-append out "/share/man/man1")))
|
||||||
|
(install-file "doc/rivercarro.1" man)))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config
|
(list pkg-config
|
||||||
wayland
|
wayland
|
||||||
|
|
Loading…
Reference in New Issue