gnu: gappa: Honor TESTS?.
* gnu/packages/algebra.scm (gappa) [phases] {check}: Honor TESTS?.
This commit is contained in:
parent
0f46559331
commit
384b98028c
1 changed files with 3 additions and 1 deletions
|
@ -1427,7 +1427,9 @@ objects.")
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _ (invoke "./remake" "-s" "-d" "install")))
|
(lambda _ (invoke "./remake" "-s" "-d" "install")))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _ (invoke "./remake" "check"))))))
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "./remake" "check")))))))
|
||||||
(native-inputs (list autoconf automake bison flex libtool))
|
(native-inputs (list autoconf automake bison flex libtool))
|
||||||
(inputs (list boost gmp mpfr))
|
(inputs (list boost gmp mpfr))
|
||||||
(home-page "https://gitlab.inria.fr/gappa/gappa")
|
(home-page "https://gitlab.inria.fr/gappa/gappa")
|
||||||
|
|
Reference in a new issue