gnu: coq-interval: Use INVOKE.
* gnu/packages/coq.scm (coq-interval)[arguments]: Use INVOKE.
This commit is contained in:
parent
e09e83880f
commit
7492af9be7
|
@ -430,16 +430,14 @@ provides BigN, BigZ, BigQ that used to be part of Coq standard 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 _ (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://coq-interval.gforge.inria.fr/")
|
(home-page "http://coq-interval.gforge.inria.fr/")
|
||||||
(synopsis "Coq tactics to simplify inequality proofs")
|
(synopsis "Coq tactics to simplify inequality proofs")
|
||||||
(description "Interval provides vernacular files containing tactics for
|
(description "Interval provides vernacular files containing tactics for
|
||||||
|
|
Loading…
Reference in New Issue