blob: da9b5a66d3697806fae8fb6af7c1895513a36558 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
require 'formula'
class ObjectiveCaml <Formula
  @url='http://caml.inria.fr/pub/distrib/ocaml-3.11/ocaml-3.11.1.tar.bz2'
  @homepage='http://caml.inria.fr/ocaml/index.en.html'
  @md5='fe011781f37f6b41fe08e0706969a89e'
  
  aka :ocaml, 'o-caml'
  def install
    system "./configure --prefix #{prefix}"
    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
  def skip_clean? path; true; end
end
  |