gnu: libmusicbrainz: Use INVOKE.

* gnu/packages/music.scm (libmusicbrainz)[arguments]: Use INVOKE and return #T
unconditionally.
master
Ricardo Wurmus 2018-11-08 10:17:15 +01:00
parent 9ab90ead36
commit 69cb939ee7
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 9 additions and 8 deletions

View File

@ -4066,14 +4066,15 @@ ISRCs and the MCN (=UPC/EAN) from disc.")
(base32
"0ikb9igyyk28jm34raxfzkw2qyn4nzzwsymdyprp7cmvi6g2ajb7"))))
(build-system cmake-build-system)
(arguments `(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(and
;; requires network connections
;; (zero? (system* "tests/mbtest"))
(zero? (system* "tests/ctest"))))))))
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
;; requires network connections
;; (invoke "tests/mbtest")
(invoke "tests/ctest")
#t)))))
(inputs `(("neon" ,neon)
("libxml2" ,libxml2)))
(native-inputs `(("pkg-config" ,pkg-config)))