me
/
guix
Archived
1
0
Fork 0

gnu: emacs-emms-print-metadata: Improve package style.

* gnu/packages/emacs-xyz.scm (emacs-emms-print-metadata)[arguments]: Use G-expressions.
master
Nicolas Goaziou 2022-07-04 15:37:31 +02:00
parent 97be378dae
commit 477e561a46
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 12 additions and 12 deletions

View File

@ -2381,18 +2381,18 @@ incrementally confined in Isearch manner.")
(base32 "000lqhsafyh1n293ksnlyavxv1pzl5pazds4sgxjcqd45lyn55ii"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags '("emms-print-metadata")
#:tests? #f ; No tests.
#:phases
(modify-phases %standard-phases
(delete 'configure)
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")))
(install-file "src/emms-print-metadata"
(string-append out "/bin"))
(install-file "emms-print-metadata.1"
(string-append out "/share/man/man1"))))))))
(list
#:make-flags #~(list "emms-print-metadata")
#:tests? #f ; No tests.
#:phases
#~(modify-phases %standard-phases
(delete 'configure)
(replace 'install
(lambda _
(install-file "src/emms-print-metadata"
(string-append #$output "/bin"))
(install-file "emms-print-metadata.1"
(string-append #$output "/share/man/man1")))))))
(inputs
(list taglib))
(home-page "https://www.gnu.org/software/emms/")