mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: libmusicbrainz: Use INVOKE.
* gnu/packages/music.scm (libmusicbrainz)[arguments]: Use INVOKE and return #T unconditionally.
This commit is contained in:
parent
9ab90ead36
commit
69cb939ee7
1 changed files with 9 additions and 8 deletions
|
@ -4066,14 +4066,15 @@ (define-public libmusicbrainz
|
|||
(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)))
|
||||
|
|
Loading…
Reference in a new issue