2010-09-30 19:31:04 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2012-03-13 03:26:25 +00:00
|
|
|
class TransitionalMode < Requirement
|
2013-01-19 01:30:43 +00:00
|
|
|
fatal true
|
|
|
|
|
2013-01-20 02:45:59 +00:00
|
|
|
satisfy do
|
2013-09-19 07:30:04 +00:00
|
|
|
Tab.for_name('camlp5').unused_options.include? 'strict'
|
2013-01-20 02:45:59 +00:00
|
|
|
end
|
|
|
|
|
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
|
2012-03-13 03:26:25 +00:00
|
|
|
homepage 'http://coq.inria.fr/'
|
2013-12-24 19:54:54 +00:00
|
|
|
url 'http://coq.inria.fr/distrib/V8.4pl3/files/coq-8.4pl3.tar.gz'
|
|
|
|
version '8.4pl3'
|
|
|
|
sha1 'b7d7f49412b0b9827bc461a78b5340e69cc0d3f4'
|
2010-09-30 19:31:04 +00:00
|
|
|
|
2013-12-24 19:54:54 +00:00
|
|
|
head 'git://scm.gforge.inria.fr/coq/coq.git'
|
2010-12-03 20:44:55 +00:00
|
|
|
|
2013-01-27 22:42:01 +00:00
|
|
|
depends_on TransitionalMode
|
2010-09-30 19:31:04 +00:00
|
|
|
depends_on 'objective-caml'
|
|
|
|
depends_on 'camlp5'
|
|
|
|
|
|
|
|
def install
|
2014-02-25 05:17:59 +00:00
|
|
|
camlp5_lib = Formula['camlp5'].lib+'ocaml/camlp5'
|
2010-09-30 19:31:04 +00:00
|
|
|
system "./configure", "-prefix", prefix,
|
|
|
|
"-mandir", man,
|
|
|
|
"-camlp5dir", camlp5_lib,
|
|
|
|
"-emacslib", "#{lib}/emacs/site-lisp",
|
|
|
|
"-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
|
2011-07-02 03:09:03 +00:00
|
|
|
system "make world"
|
2010-09-30 19:31:04 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2012-03-13 03:26:25 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2010-09-30 19:31:04 +00:00
|
|
|
Coq's Emacs mode is installed into
|
|
|
|
#{lib}/emacs/site-lisp
|
2012-03-13 03:26:25 +00:00
|
|
|
|
2010-09-30 19:31:04 +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
|