4416a06ba8
Version bump. Closes Homebrew/homebrew#33653. Signed-off-by: Brett Koonce <koonce@gmail.com>
51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
require "formula"
|
|
|
|
class TransitionalMode < Requirement
|
|
fatal true
|
|
|
|
satisfy { !Tab.for_name("camlp5").include?("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
|
|
homepage "https://coq.inria.fr/"
|
|
url "https://coq.inria.fr/distrib/V8.4pl5/files/coq-8.4pl5.tar.gz"
|
|
version "8.4pl5"
|
|
sha1 "107717cbaef3a469e8ff775ae54dbbc457935816"
|
|
|
|
head "git://scm.gforge.inria.fr/coq/coq.git"
|
|
|
|
depends_on TransitionalMode
|
|
depends_on "objective-caml"
|
|
depends_on "camlp5"
|
|
|
|
def install
|
|
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
|
|
system "make", "world"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Coq's Emacs mode is installed into
|
|
#{opt_lib}/emacs/site-lisp
|
|
|
|
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
|