f03a123595
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
46 lines
1.5 KiB
Ruby
46 lines
1.5 KiB
Ruby
require 'formula'
|
|
|
|
class Coq < Formula
|
|
url 'http://coq.inria.fr/distrib/V8.3pl2/files/coq-8.3pl2.tar.gz'
|
|
version '8.3pl2'
|
|
head 'svn://scm.gforge.inria.fr/svn/coq/trunk'
|
|
homepage 'http://coq.inria.fr/'
|
|
md5 'db415f6c5372f5a443699c62f5affcb4'
|
|
|
|
skip_clean :all
|
|
|
|
depends_on 'objective-caml'
|
|
depends_on 'camlp5'
|
|
|
|
def install
|
|
unless `camlp5 -pmode 2>&1`.chomp == 'transitional'
|
|
onoe 'camlp5 must be compiled in transitional mode (--transitional option)'
|
|
exit 1
|
|
end
|
|
arch = Hardware.is_64_bit? ? "x86_64" : "i386"
|
|
camlp5_lib = Formula.factory('camlp5').lib+'ocaml/camlp5'
|
|
system "./configure", "-prefix", prefix,
|
|
"-mandir", man,
|
|
"-camlp5dir", camlp5_lib,
|
|
"-emacslib", "#{lib}/emacs/site-lisp",
|
|
"-coqdocdir", "#{share}/coq/latex",
|
|
"-coqide", "none",
|
|
"-with-doc", "no",
|
|
"-arch", arch
|
|
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
|
|
#{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
|