Archived
1
0
Fork 0

gnu: mympd: Update to 10.3.3.

* gnu/packages/mpd.scm (mympd): Update to 10.3.3.
<arguments>: Honor 'strip phase.
<native-inputs>: Add missing pkg-config.
<description>: Reword it.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Bruno Victal 2023-06-09 16:04:20 +01:00 committed by Ludovic Courtès
parent 740b423e9e
commit a3363e50cf
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -615,7 +615,7 @@ mpdevil loads all tags and covers on demand.")
(define-public mympd (define-public mympd
(package (package
(name "mympd") (name "mympd")
(version "10.3.2") (version "10.3.3")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -624,14 +624,17 @@ mpdevil loads all tags and covers on demand.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"04mpj0qikdg7nqp8rvwr83bx3544qy2ha0sjj4cnpjknka6p8xan")))) "1n8z3rscrw7k097q5z1d59mrryy7b8m0zdfhi767a1qpa121m8if"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
(list #:tests? #f)) ; no test target (list
(native-inputs (list jq perl)) #:configure-flags
#~(list "-DMYMPD_STRIP_BINARY=OFF") ; handled by 'strip phase
#:tests? #f)) ; no test target
(native-inputs (list jq perl pkg-config))
(inputs (list flac libid3tag lua openssl pcre2)) (inputs (list flac libid3tag lua openssl pcre2))
(home-page "https://jcorporation.github.io/") (home-page "https://jcorporation.github.io/")
(synopsis "Web-based MPD client") (synopsis "Web-based MPD client")
(description "MyMPD is a mobile-friendly web client for the MPD music (description "MyMPD is a mobile-friendly web client for the Music Player
player daemon.") Daemon (MPD).")
(license license:gpl3+))) (license license:gpl3+)))