mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: lsof: Shorten 'install phase.
* gnu/packages/lsof.scm (lsof)[arguments]: Use 'install-file during the 'install phase.
This commit is contained in:
parent
b6ea329a32
commit
4ae3549f7c
1 changed files with 3 additions and 7 deletions
|
@ -72,13 +72,9 @@ (define-public lsof
|
|||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(mkdir out)
|
||||
(mkdir (string-append out "/bin"))
|
||||
(copy-file "lsof" (string-append out "/bin/lsof"))
|
||||
(mkdir (string-append out "/share"))
|
||||
(mkdir (string-append out "/share/man"))
|
||||
(mkdir (string-append out "/share/man/man8"))
|
||||
(copy-file "lsof.8" (string-append out "/share/man/man8/lsof.8"))))))))
|
||||
(install-file "lsof" (string-append out "/bin"))
|
||||
(install-file "lsof.8" (string-append out "/share/man/man8")))
|
||||
#t)))))
|
||||
(synopsis "Display information about open files")
|
||||
(description
|
||||
"Lsof stands for LiSt Open Files, and it does just that.
|
||||
|
|
Loading…
Reference in a new issue