homebrew-core/Formula/objective-caml.rb

25 lines
672 B
Ruby
Raw Normal View History

require 'formula'
class ObjectiveCaml <Formula
url 'http://caml.inria.fr/pub/distrib/ocaml-3.11/ocaml-3.11.2.tar.bz2'
homepage 'http://caml.inria.fr/ocaml/index.en.html'
md5 '4601a7aea66444d61704de8de46c52c6'
2010-06-05 16:07:41 +00:00
aka 'ocaml', 'o-caml'
# note it indeed seems necessary to clean everything
# see http://github.com/mxcl/homebrew/issues#issue/188
def skip_clean? path; true; end
def install
2010-06-05 16:07:41 +00:00
system "./configure", "--prefix", prefix, "--mandir", man
system "make world"
# 'world' can be built in parallel, but the other targets have problems
ENV.deparallelize
system "make opt"
system "make opt.opt"
system "make install"
end
end