a12ab38e24
this step is failing in CI, and @ilovezfs proposed this magic fix ;) Closes #2498. Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
62 lines
1.9 KiB
Ruby
62 lines
1.9 KiB
Ruby
class Camlp5TransitionalModeRequirement < Requirement
|
|
fatal true
|
|
|
|
satisfy(:build_env => false) { !Tab.for_name("camlp5").with?("strict") }
|
|
|
|
def message; <<-EOS.undent
|
|
camlp5 must be compiled in transitional mode (instead of --strict mode):
|
|
brew install camlp5
|
|
EOS
|
|
end
|
|
end
|
|
|
|
class Coq < Formula
|
|
desc "Proof assistant for higher-order logic"
|
|
homepage "https://coq.inria.fr/"
|
|
url "https://coq.inria.fr/distrib/8.5pl1/files/coq-8.5pl1.tar.gz"
|
|
version "8.5pl1"
|
|
sha256 "4bfa75b10ae1be61301d0f7bc087b7c24e0b8bd025dd358c75709ac04ddd5df0"
|
|
revision 1
|
|
|
|
head "git://scm.gforge.inria.fr/coq/coq.git", :branch => "trunk"
|
|
|
|
bottle do
|
|
sha256 "76ad5f2d99e653cc9a752b00fe5007615927b2beb8d88e84fa1b309465b46a69" => :el_capitan
|
|
sha256 "5fe48d7badae317ef4d13d73bca7b4e3a02b9f382b98b9fef066356264a4b13c" => :yosemite
|
|
sha256 "66f5126d6805da8ae653e1442897c8b3796dd046eba3a9e25684576d221aa10e" => :mavericks
|
|
end
|
|
|
|
depends_on Camlp5TransitionalModeRequirement
|
|
depends_on "camlp5"
|
|
depends_on "ocaml"
|
|
|
|
def install
|
|
camlp5_lib = Formula["camlp5"].opt_lib/"ocaml/camlp5"
|
|
system "./configure", "-prefix", prefix,
|
|
"-mandir", man,
|
|
"-camlp5dir", camlp5_lib,
|
|
"-emacslib", "#{share}/emacs/site-lisp/coq",
|
|
"-coqdocdir", "#{pkgshare}/latex",
|
|
"-coqide", "no",
|
|
"-with-doc", "no"
|
|
system "make", "world"
|
|
ENV.deparallelize { system "make", "install" }
|
|
end
|
|
|
|
test do
|
|
(testpath/"testing.v").write <<-EOS.undent
|
|
Inductive nat : Set :=
|
|
| O : nat
|
|
| S : nat -> nat.
|
|
Fixpoint add (n m: nat) : nat :=
|
|
match n with
|
|
| O => m
|
|
| S n' => S (add n' m)
|
|
end.
|
|
Lemma add_O_r : forall (n: nat), add n O = n.
|
|
intros n; induction n; simpl; auto; rewrite IHn; auto.
|
|
Qed.
|
|
EOS
|
|
system("#{bin}/coqc", "#{testpath}/testing.v")
|
|
end
|
|
end
|