gnu: unclutter: Use 'modify-phases'.
* gnu/packages/xdisorg.scm (unclutter)[arguments]: Use 'modify-phases'.
This commit is contained in:
parent
c237480b0c
commit
ea0836cd6f
|
@ -514,10 +514,10 @@ include cursor in the resulting image.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no check target
|
'(#:tests? #f ; no check target
|
||||||
#:phases (alist-delete
|
#:phases
|
||||||
'configure
|
(modify-phases %standard-phases
|
||||||
(alist-replace
|
(delete 'configure)
|
||||||
'install
|
(replace 'install
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin"))
|
(bin (string-append out "/bin"))
|
||||||
|
@ -527,8 +527,7 @@ include cursor in the resulting image.")
|
||||||
(zero?
|
(zero?
|
||||||
(system* "make" "install" "install.man"
|
(system* "make" "install" "install.man"
|
||||||
(string-append "BINDIR=" bin)
|
(string-append "BINDIR=" bin)
|
||||||
(string-append "MANDIR=" man1)))))
|
(string-append "MANDIR=" man1)))))))))
|
||||||
%standard-phases))))
|
|
||||||
(inputs `(("libx11" ,libx11)))
|
(inputs `(("libx11" ,libx11)))
|
||||||
(home-page "http://ftp.x.org/contrib/utilities/")
|
(home-page "http://ftp.x.org/contrib/utilities/")
|
||||||
(synopsis "Hide idle mouse cursor")
|
(synopsis "Hide idle mouse cursor")
|
||||||
|
|
Loading…
Reference in New Issue