homebrew-core/Formula/coq.rb

63 lines
1.9 KiB
Ruby
Raw Normal View History

2015-04-11 18:10:29 +00:00
class Camlp5TransitionalModeRequirement < Requirement
2013-01-19 01:30:43 +00:00
fatal true
satisfy(:build_env => false) { !Tab.for_name("camlp5").with?("strict") }
2013-01-20 02:45:59 +00:00
2012-03-13 03:26:25 +00:00
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"
2015-05-15 22:19:04 +00:00
bottle do
2016-05-14 00:17:24 +00:00
sha256 "76ad5f2d99e653cc9a752b00fe5007615927b2beb8d88e84fa1b309465b46a69" => :el_capitan
sha256 "5fe48d7badae317ef4d13d73bca7b4e3a02b9f382b98b9fef066356264a4b13c" => :yosemite
sha256 "66f5126d6805da8ae653e1442897c8b3796dd046eba3a9e25684576d221aa10e" => :mavericks
2015-05-15 22:19:04 +00:00
end
2015-04-11 18:10:29 +00:00
depends_on Camlp5TransitionalModeRequirement
2014-05-25 14:50:13 +00:00
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"
2014-05-25 14:50:13 +00:00
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