2014-10-27 18:43:53 +00:00
|
|
|
class Camlp4 < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Tool to write extensible parsers in OCaml"
|
2014-10-28 08:09:16 +00:00
|
|
|
homepage "https://github.com/ocaml/camlp4"
|
2015-07-07 19:57:45 +00:00
|
|
|
url "https://github.com/ocaml/camlp4/archive/4.02+6.tar.gz"
|
2015-08-01 04:15:01 +00:00
|
|
|
sha256 "820c35b69fdff3225bda6045fabffe5d7c54dda00fb157444ac8bda5e1778d45"
|
2015-07-07 19:57:45 +00:00
|
|
|
version "4.02.2+6"
|
2015-09-01 19:13:23 +00:00
|
|
|
head "https://github.com/ocaml/camlp4.git", :branch => "trunk"
|
2015-07-31 17:57:56 +00:00
|
|
|
revision 1
|
2014-10-28 08:09:16 +00:00
|
|
|
|
2014-10-27 21:10:33 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2015-07-31 18:50:40 +00:00
|
|
|
sha256 "c04f0052bceed26bf5432a1304f13b4a15fae8757f530776874b714c50754c7a" => :yosemite
|
|
|
|
sha256 "586755085fa262615cbd9bbc5a869351ffec0dcf142113fbfc80c253be98eb06" => :mavericks
|
|
|
|
sha256 "a4a1d70eb2002d3773f4a1d9ae989b613d8b3772c02baacabbbba0309463c7ff" => :mountain_lion
|
2014-10-27 21:10:33 +00:00
|
|
|
end
|
|
|
|
|
2015-09-01 19:13:23 +00:00
|
|
|
depends_on "ocaml"
|
2014-10-27 18:43:53 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# this build fails if jobs are parallelized
|
|
|
|
ENV.deparallelize
|
|
|
|
system "./configure", "--bindir=#{bin}",
|
|
|
|
"--libdir=#{HOMEBREW_PREFIX}/lib/ocaml",
|
|
|
|
"--pkgdir=#{HOMEBREW_PREFIX}/lib/ocaml/camlp4"
|
|
|
|
system "make", "all"
|
2014-10-28 08:09:16 +00:00
|
|
|
system "make", "install", "LIBDIR=#{lib}/ocaml",
|
|
|
|
"PKGDIR=#{lib}/lib/ocaml/camlp4"
|
2014-10-27 18:43:53 +00:00
|
|
|
end
|
2014-10-27 19:02:08 +00:00
|
|
|
|
|
|
|
test do
|
2014-10-28 08:09:16 +00:00
|
|
|
(testpath/"foo.ml").write "type t = Homebrew | Rocks"
|
|
|
|
system "#{bin}/camlp4", "-parser", "OCaml", "-printer", "OCamlr",
|
|
|
|
"foo.ml", "-o", testpath/"foo.ml.out"
|
|
|
|
assert_equal "type t = [ Homebrew | Rocks ];",
|
|
|
|
(testpath/"foo.ml.out").read.strip
|
2014-10-27 19:02:08 +00:00
|
|
|
end
|
2014-10-27 18:43:53 +00:00
|
|
|
end
|