me
/
guix
Archived
1
0
Fork 0

gnu: mpd-mpc: Update to 0.34.

* gnu/packages/mpd.scm (mpd-mpc): Update to 0.34.
[arguments]: Add a new 'remove-bogus-rsync-requirement phase.
master
Tobias Geerinckx-Rice 2021-12-18 05:39:32 +01:00
parent 287c404c7f
commit 3b2b42034c
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 14 additions and 2 deletions

View File

@ -30,6 +30,7 @@
(define-module (gnu packages mpd)
#:use-module (gnu packages)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
@ -174,7 +175,7 @@ protocol.")
(define-public mpd-mpc
(package
(name "mpd-mpc")
(version "0.33")
(version "0.34")
(source (origin
(method url-fetch)
(uri
@ -183,8 +184,19 @@ protocol.")
"/mpc-" version ".tar.xz"))
(sha256
(base32
"15hjpzqs83v1zx49x8nkpwy9hpl1jxd55z1w50vm82gm32zcqh2g"))))
"086sdx88zvgbv4j9kw4qlrsw1n621d6j6403pcid045wahv3y7k9"))))
(build-system meson-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-bogus-rsync-requirement
;; Meson thinks a maintainer upload to musicpd.org task
;; merits a hard dependency on rsync. Convince it otherwise.
;; Don't use true so that the build will fail if it is ever
;; actually invoked.
(lambda _
(substitute* "doc/meson.build"
(("rsync") "ls")))))))
(inputs (list libmpdclient))
(native-inputs
(list pkg-config python-sphinx))