coq 8.10.0

This commit is contained in:
Tej Chajed 2019-10-09 10:50:00 -04:00 committed by FX Coudert
parent b88f6fe1fd
commit 8b1ed87514

View file

@ -1,8 +1,8 @@
class Coq < Formula
desc "Proof assistant for higher-order logic"
homepage "https://coq.inria.fr/"
url "https://github.com/coq/coq/archive/V8.9.1.tar.gz"
sha256 "87251327e8a1e25c6b08b5c0ae8e7cdf3a91a5f30832bbe74ccc4f0bde9618ea"
url "https://github.com/coq/coq/archive/V8.10.0.tar.gz"
sha256 "292c64162620c4c4825c323c1c71762d764ebc9ce39bd8eee900851eaca655f5"
head "https://github.com/coq/coq.git"
bottle do
@ -22,6 +22,11 @@ class Coq < Formula
"-coqdocdir", "#{pkgshare}/latex",
"-coqide", "no",
"-with-doc", "no"
# building the compiler in parallel fails due to upstream bug:
# https://github.com/coq/coq/issues/10864
# once fixed, delete this line and the compiler will be built with
# parallelism as part of "make world"
ENV.deparallelize { system "make", "coqbinaries" }
system "make", "world"
ENV.deparallelize { system "make", "install" }
end