2015-04-11 18:10:29 +00:00
|
|
|
class Camlp5TransitionalModeRequirement < Requirement
|
2013-01-19 01:30:43 +00:00
|
|
|
fatal true
|
|
|
|
|
2015-10-05 12:40:09 +00:00
|
|
|
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
|
|
|
|
|
2010-09-30 19:31:04 +00:00
|
|
|
class Coq < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Proof assistant for higher-order logic"
|
2014-10-31 23:39:27 +00:00
|
|
|
homepage "https://coq.inria.fr/"
|
2016-01-25 01:51:20 +00:00
|
|
|
url "https://coq.inria.fr/distrib/V8.5/files/coq-8.5.tar.gz"
|
|
|
|
sha256 "89a92fb8b91e7cb0797d41c87cd13e4b63bee76c32a6dcc3d7c8055ca6a9ae3d"
|
2010-09-30 19:31:04 +00:00
|
|
|
|
2015-05-15 14:05:09 +00:00
|
|
|
head "git://scm.gforge.inria.fr/coq/coq.git", :branch => "trunk"
|
2010-12-03 20:44:55 +00:00
|
|
|
|
2015-05-15 22:19:04 +00:00
|
|
|
bottle do
|
2016-01-25 03:40:02 +00:00
|
|
|
sha256 "3d632ef3f1412b32893693c169f599c42e0e140bea0ce088895c05b6b3bcdabe" => :el_capitan
|
|
|
|
sha256 "5675dbdee88a87e5e2200a82f51aac37e7410657ef9c0e28b8551f45d7ecc787" => :yosemite
|
|
|
|
sha256 "5bbf0f5893b9d96e13ba123d9c63c2c8e83ed1e6f2e283f53dfc63cc591e745f" => :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"
|
2015-09-02 23:43:23 +00:00
|
|
|
depends_on "ocaml"
|
2010-09-30 19:31:04 +00:00
|
|
|
|
|
|
|
def install
|
2014-05-25 14:50:13 +00:00
|
|
|
camlp5_lib = Formula["camlp5"].opt_lib+"ocaml/camlp5"
|
2010-09-30 19:31:04 +00:00
|
|
|
system "./configure", "-prefix", prefix,
|
|
|
|
"-mandir", man,
|
|
|
|
"-camlp5dir", camlp5_lib,
|
2015-07-05 19:33:48 +00:00
|
|
|
"-emacslib", "#{share}/emacs/site-lisp/coq",
|
2010-09-30 19:31:04 +00:00
|
|
|
"-coqdocdir", "#{share}/coq/latex",
|
2012-08-22 19:24:45 +00:00
|
|
|
"-coqide", "no",
|
2012-08-29 17:50:21 +00:00
|
|
|
"-with-doc", "no"
|
2010-09-30 19:31:04 +00:00
|
|
|
ENV.j1 # Otherwise "mkdir bin" can be attempted by more than one job
|
2014-05-25 14:50:13 +00:00
|
|
|
system "make", "world"
|
|
|
|
system "make", "install"
|
2010-09-30 19:31:04 +00:00
|
|
|
end
|
|
|
|
|
2012-03-13 03:26:25 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2016-01-12 18:01:26 +00:00
|
|
|
To use the Coq Emacs mode, add the following to your init file:
|
2014-04-25 00:08:26 +00:00
|
|
|
(setq auto-mode-alist (cons '("\\\\.v$" . coq-mode) auto-mode-alist))
|
2010-09-30 19:31:04 +00:00
|
|
|
(autoload 'coq-mode "coq" "Major mode for editing Coq vernacular." t)
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|