homebrew-core/Formula/coq.rb

57 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 { !Tab.for_name("camlp5").include?("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/V8.4pl6/files/coq-8.4pl6.tar.gz"
version "8.4pl6"
2015-04-19 10:25:52 +00:00
sha256 "a540a231a9970a49353ca039f3544616ff86a208966ab1c593779ae13c91ebd6"
head "git://scm.gforge.inria.fr/coq/coq.git", :branch => "trunk"
2015-05-15 22:19:04 +00:00
bottle do
sha256 "c2978c36d4cf84212e5f9d246135f032267b04cfb5bf413620706c7b8be87c1f" => :yosemite
sha256 "01b1fe69d4dab5f6c30891f37ce7e8999768784f02685a3a548abe37c5876e0e" => :mavericks
sha256 "3dcdec51e2d2402d6ec9bca3f5f1d29a486995fcccfbb46e9b023f18715a4968" => :mountain_lion
end
2015-04-11 18:10:29 +00:00
depends_on Camlp5TransitionalModeRequirement
2014-05-25 14:50:13 +00:00
depends_on "objective-caml"
depends_on "camlp5"
def install
2014-05-25 14:50:13 +00:00
camlp5_lib = Formula["camlp5"].opt_lib+"ocaml/camlp5"
system "./configure", "-prefix", prefix,
"-mandir", man,
"-camlp5dir", camlp5_lib,
"-emacslib", "#{lib}/emacs/site-lisp",
"-coqdocdir", "#{share}/coq/latex",
"-coqide", "no",
"-with-doc", "no"
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"
end
2012-03-13 03:26:25 +00:00
def caveats; <<-EOS.undent
Coq's Emacs mode is installed into
2014-05-25 14:50:13 +00:00
#{opt_lib}/emacs/site-lisp
2012-03-13 03:26:25 +00:00
To use the Coq Emacs mode, you need to put the following lines in
your .emacs file:
(setq auto-mode-alist (cons '("\\\\.v$" . coq-mode) auto-mode-alist))
(autoload 'coq-mode "coq" "Major mode for editing Coq vernacular." t)
EOS
end
end