mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: ardour: Enable tests.
* gnu/packages/audio.scm (ardour)[arguments]: Enable unit tests.
This commit is contained in:
parent
ba5c85679d
commit
5f0c649683
1 changed files with 3 additions and 2 deletions
|
@ -209,13 +209,14 @@ (define-public ardour
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--cxx11" ; required by gtkmm
|
`(#:configure-flags '("--cxx11" ; required by gtkmm
|
||||||
"--no-phone-home" ; don't contact ardour.org
|
"--no-phone-home" ; don't contact ardour.org
|
||||||
"--freedesktop") ; install .desktop file
|
"--freedesktop" ; install .desktop file
|
||||||
|
"--test") ; build unit tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after
|
(add-after
|
||||||
'unpack 'set-rpath-in-LDFLAGS
|
'unpack 'set-rpath-in-LDFLAGS
|
||||||
,(ardour-rpath-phase (version-prefix version 1))))
|
,(ardour-rpath-phase (version-prefix version 1))))
|
||||||
#:tests? #f ; no check target
|
#:test-target "test"
|
||||||
#:python ,python-2))
|
#:python ,python-2))
|
||||||
(inputs
|
(inputs
|
||||||
`(("alsa-lib" ,alsa-lib)
|
`(("alsa-lib" ,alsa-lib)
|
||||||
|
|
Loading…
Reference in a new issue