menhir 20140422

This commit is contained in:
Jack Nagel 2014-05-26 14:40:18 -05:00
parent b3d1e9cfd0
commit a19f0199c1

15
Formula/menhir.rb Normal file
View file

@ -0,0 +1,15 @@
require "formula"
class Menhir < Formula
homepage "http://cristal.inria.fr/~fpottier/menhir"
url "http://cristal.inria.fr/~fpottier/menhir/menhir-20140422.tar.gz"
sha1 "1f8980f1436f162c8abed990ade51f0e9433f7a2"
depends_on "objective-caml"
def install
ENV.deparallelize
system "make", "PREFIX=#{prefix}", "all"
system "make", "PREFIX=#{prefix}", "install"
end
end