gnu: coq-gappa: Use INVOKE.
* gnu/packages/coq.scm (coq-gappa)[arguments]: Unconditionally return #T from build phases by using INVOKE.
This commit is contained in:
parent
a48d6acc23
commit
ace73a93cd
|
@ -254,16 +254,14 @@ inside Coq.")
|
||||||
(add-before 'configure 'fix-remake
|
(add-before 'configure 'fix-remake
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "remake.cpp"
|
(substitute* "remake.cpp"
|
||||||
(("/bin/sh") (which "sh")))))
|
(("/bin/sh") (which "sh")))
|
||||||
|
#t))
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _ (invoke "./remake")))
|
||||||
(zero? (system* "./remake"))))
|
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _ (invoke "./remake" "check")))
|
||||||
(zero? (system* "./remake" "check"))))
|
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _
|
(lambda _ (invoke "./remake" "install"))))))
|
||||||
(zero? (system* "./remake" "install")))))))
|
|
||||||
(home-page "http://gappa.gforge.inria.fr/")
|
(home-page "http://gappa.gforge.inria.fr/")
|
||||||
(synopsis "Verify and formally prove properties on numerical programs")
|
(synopsis "Verify and formally prove properties on numerical programs")
|
||||||
(description "Gappa is a tool intended to help verifying and formally proving
|
(description "Gappa is a tool intended to help verifying and formally proving
|
||||||
|
|
Loading…
Reference in New Issue