me
/
guix
Archived
1
0
Fork 0

gnu: gappa: Honor TESTS?.

* gnu/packages/algebra.scm (gappa) [phases] {check}: Honor TESTS?.
master
Maxim Cournoyer 2022-10-03 09:49:27 -04:00
parent 0f46559331
commit 384b98028c
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 3 additions and 1 deletions

View File

@ -1427,7 +1427,9 @@ objects.")
(replace 'install
(lambda _ (invoke "./remake" "-s" "-d" "install")))
(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))
(inputs (list boost gmp mpfr))
(home-page "https://gitlab.inria.fr/gappa/gappa")