gnu: coq-flocq: Update phase style.
* gnu/packages/ocaml.scm (coq-flocq)[arguments]: Substitute INVOKE for SYSTEM* and end all phases with an explicit #t.
This commit is contained in:
parent
324f192700
commit
8abbe5dc82
|
@ -3890,18 +3890,22 @@ cross-platform SDL C library.")
|
||||||
(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 _
|
||||||
(zero? (system* "./remake"))))
|
(invoke "./remake")
|
||||||
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "./remake" "check"))))
|
(invoke "./remake" "check")
|
||||||
|
#t))
|
||||||
;; TODO: requires coq-gappa and coq-interval.
|
;; TODO: requires coq-gappa and coq-interval.
|
||||||
;(zero? (system* "./remake" "check-more"))))
|
;(invoke "./remake" "check-more")
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "./remake" "install")))))))
|
(invoke "./remake" "install")
|
||||||
|
#t)))))
|
||||||
(home-page "http://flocq.gforge.inria.fr/")
|
(home-page "http://flocq.gforge.inria.fr/")
|
||||||
(synopsis "Floating-point formalization for the Coq system")
|
(synopsis "Floating-point formalization for the Coq system")
|
||||||
(description "Flocq (Floats for Coq) is a floating-point formalization for
|
(description "Flocq (Floats for Coq) is a floating-point formalization for
|
||||||
|
|
Loading…
Reference in New Issue