mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: wavpack: Enable test suite.
* gnu/packages/audio.scm (wavpack)[arguments]: Add configure-flag to build test program. Use custom 'check phase to run test suite.
This commit is contained in:
parent
5a4d0a6531
commit
d970303589
1 changed files with 9 additions and 1 deletions
|
@ -3270,7 +3270,15 @@ (define-public wavpack
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
(list "--disable-static")))
|
||||
(list "--disable-static"
|
||||
"--enable-tests")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "./cli/wvtest" "--default" "--short"))
|
||||
#t)))))
|
||||
(home-page "https://www.wavpack.com/")
|
||||
(synopsis "Hybrid lossless audio codec")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue