homebrew-core/Formula/ocamlbuild.rb

38 lines
1.5 KiB
Ruby

class Ocamlbuild < Formula
desc "Generic build tool for OCaml"
homepage "https://github.com/ocaml/ocamlbuild"
url "https://github.com/ocaml/ocamlbuild/archive/0.14.0.tar.gz"
sha256 "87b29ce96958096c0a1a8eeafeb6268077b2d11e1bf2b3de0f5ebc9cf8d42e78"
license "LGPL-2.0"
revision 2
head "https://github.com/ocaml/ocamlbuild.git", branch: "master"
livecheck do
url :stable
strategy :github_latest
end
bottle do
sha256 arm64_monterey: "f1db7b36700c95ce9ecf78fdbfd39444a2f1f6a338a38f9a5b195fea26ee2d09"
sha256 arm64_big_sur: "3959adfee1e78a7194faf82338106d5a281dfa14a55e37a7506dd5970f416358"
sha256 monterey: "028e644d34d4735929477809fca3a5587f96bb4cfe94e5efa7b9f3eddd06443c"
sha256 big_sur: "3daa705ce9d023a2679f609671d06de48e8dd1dd13ece8db46068802abbdd41f"
sha256 catalina: "8f6fc7e7413b24faa041b7651349a3128f9eadefae5c9aa0c50f0d1a56e010f6"
sha256 mojave: "04fed811edb4dd3903f742ec6678643f9959e85c4fcb763972c8779dec059515"
sha256 high_sierra: "e4cd0274f9657874e29add30545055af4ea8697d426ed95f799ddce63aef5cfe"
sha256 x86_64_linux: "6b0804c980c27a7df543c4b31811a9b1509d88692d1b9da5f44eb1297da9aa76"
end
depends_on "ocaml"
def install
system "make", "configure", "OCAMLBUILD_BINDIR=#{bin}", "OCAMLBUILD_LIBDIR=#{lib}", "OCAMLBUILD_MANDIR=#{man}"
system "make"
system "make", "install"
end
test do
assert_match version.to_s, shell_output("#{bin}/ocamlbuild --version")
end
end