homebrew-core/Formula/camlp4.rb
Anil Madhavapeddy 387ff19a3d camlp4 4.02.3+6
camlp4: bump to 4.02.3+6 to keep in sync with OCaml version

Although the distribution here is the same as 4.02.2+6, it must
be recompiled with the version of OCaml that is installed.
OCaml is now 4.02.3 in the tree, and @dsheets reports a failure
due to having a camlp4 that was not recompiled after the OCaml
compiler was updated.

Closes Homebrew/homebrew#46432.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-11-28 17:12:43 +00:00

37 lines
1.4 KiB
Ruby

class Camlp4 < Formula
desc "Tool to write extensible parsers in OCaml"
homepage "https://github.com/ocaml/camlp4"
url "https://github.com/ocaml/camlp4/archive/4.02+6.tar.gz"
version "4.02.3+6"
sha256 "820c35b69fdff3225bda6045fabffe5d7c54dda00fb157444ac8bda5e1778d45"
head "https://github.com/ocaml/camlp4.git", :branch => "trunk"
bottle do
cellar :any_skip_relocation
revision 1
sha256 "2fbb2011ee0a44abdc5ce6cbdea7b1f271a00b903bd14dab9ecf3f5318571204" => :el_capitan
sha256 "3a3bcb70dad5b897a8d1db8bf28fe15794de5f14249d00b88ce5a8411e5e4a9d" => :yosemite
sha256 "08ca2278024819f625b4a0ca52b2cb931279c9d7ec1d9a55c9e9748c5f55cb15" => :mavericks
end
depends_on "ocaml"
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"
system "make", "install", "LIBDIR=#{lib}/ocaml",
"PKGDIR=#{lib}/lib/ocaml/camlp4"
end
test do
(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
end
end