homebrew-core/Formula/camlp5.rb
Brett Koonce d30f20e1a0 camlp5 6.06
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-06 20:39:07 -07:00

29 lines
690 B
Ruby

require 'formula'
class Camlp5 < Formula
homepage 'http://pauillac.inria.fr/~ddr/camlp5/'
url 'http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-6.06.tgz'
sha1 'd3d56748de424afc3f878e650254b9d3e5fae6c2'
depends_on 'objective-caml'
def options
[['--strict', "Compile in strict mode"]]
end
def install
# compile for strict or transitional
if ARGV.include? '--strict'
strictness = "-strict"
else
strictness = "-transitional"
end
system "./configure", "-prefix", prefix, "-mandir", man, strictness
# this build fails if jobs are parallelized
ENV.deparallelize
system "make world.opt"
system "make install"
end
end