gnu: neofetch: Remove dead code.
Turns out that's most of it. * gnu/packages/admin.scm (neofetch)[arguments]: Remove all custom phases.
This commit is contained in:
parent
00fca594da
commit
acb1c72c1e
|
@ -2407,27 +2407,7 @@ tool for remote execution and deployment.")
|
||||||
(list (string-append "PREFIX=" %output))
|
(list (string-append "PREFIX=" %output))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-target-directories
|
(delete 'configure)))) ; no configure script
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(let ((out (assoc-ref outputs "out")))
|
|
||||||
(substitute* "Makefile"
|
|
||||||
(("\\$\\(DESTDIR\\)/etc/")
|
|
||||||
"$(PREFIX)/etc/"))
|
|
||||||
(substitute* "neofetch"
|
|
||||||
(("\"/etc/neofetch")
|
|
||||||
(string-append "\"" out "/etc/neofetch"))
|
|
||||||
(("\"/usr/share/neofetch")
|
|
||||||
(string-append "\"" out "/share/neofetch"))))
|
|
||||||
#t))
|
|
||||||
(delete 'configure) ; no configure script
|
|
||||||
(replace 'install
|
|
||||||
(lambda* (#:key make-flags outputs #:allow-other-keys)
|
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
|
||||||
(doc (string-append out "/share/doc/" ,name "-" ,version))
|
|
||||||
(etc (string-append doc "/examples/etc")))
|
|
||||||
(zero? (apply system* `("make" ,@make-flags
|
|
||||||
,(string-append "SYSCONFDIR=" etc)
|
|
||||||
"install")))))))))
|
|
||||||
(home-page "https://github.com/dylanaraps/neofetch")
|
(home-page "https://github.com/dylanaraps/neofetch")
|
||||||
(synopsis "System info script")
|
(synopsis "System info script")
|
||||||
(description "Neofetch is a CLI system information tool written in Bash.
|
(description "Neofetch is a CLI system information tool written in Bash.
|
||||||
|
|
Loading…
Reference in New Issue