124 lines
4.1 KiB
Ruby
124 lines
4.1 KiB
Ruby
class Haxe < Formula
|
|
desc "Multi-platform programming language"
|
|
homepage "https://haxe.org/"
|
|
license all_of: ["GPL-2.0-or-later", "MIT"]
|
|
head "https://github.com/HaxeFoundation/haxe.git", branch: "development"
|
|
|
|
stable do
|
|
url "https://github.com/HaxeFoundation/haxe.git",
|
|
tag: "4.2.5",
|
|
revision: "e5eec3122454bfc95412437d938d1d8d3e77ed68"
|
|
|
|
# Remove when campl5 dependency is bumped to 8.00 in a release
|
|
patch do
|
|
url "https://github.com/HaxeFoundation/haxe/commit/db72b31390c51c1627cf5658ca256aace41a81b0.patch?full_index=1"
|
|
sha256 "95a22f2cc227c4e6d066e60eb88b2a71ad6c278d6f38656fbd87ee905411918a"
|
|
end
|
|
end
|
|
|
|
livecheck do
|
|
url :stable
|
|
strategy :github_latest
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "ebb6b5472bc7408ce268e357651c2b123abaa2f614260f88838a149289423499"
|
|
sha256 cellar: :any, arm64_big_sur: "380f0f1f640c3f4919d272a4648b2d04fb3afd93820003cec19b9f54be1cba75"
|
|
sha256 cellar: :any, monterey: "8cdccc4df05e252d1094ecad90a97ea898659a5017b9c61c6a157629887e68ad"
|
|
sha256 cellar: :any, big_sur: "dcb8925b9b647939dbf5abbd2ba150f26f581a525fbf8e9c1ce369de58bb6adc"
|
|
sha256 cellar: :any, catalina: "21ddb930758328523200f2ef95d7639bfe32ca1a94a9861972a721b0c96ab968"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "cce4723939b40c48dfb88f1ef06cf967aa5bb76a033a774eb207c72bb93abf12"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "ocaml" => :build
|
|
depends_on "opam" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "mbedtls@2"
|
|
depends_on "neko"
|
|
depends_on "pcre"
|
|
|
|
uses_from_macos "m4" => :build
|
|
uses_from_macos "perl" => :build
|
|
uses_from_macos "rsync" => :build
|
|
uses_from_macos "unzip" => :build
|
|
|
|
on_linux do
|
|
depends_on "node" => :test
|
|
end
|
|
|
|
resource "String::ShellQuote" do
|
|
url "https://cpan.metacpan.org/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz"
|
|
sha256 "e606365038ce20d646d255c805effdd32f86475f18d43ca75455b00e4d86dd35"
|
|
end
|
|
|
|
resource "IPC::System::Simple" do
|
|
url "https://cpan.metacpan.org/authors/id/J/JK/JKEENAN/IPC-System-Simple-1.30.tar.gz"
|
|
sha256 "22e6f5222b505ee513058fdca35ab7a1eab80539b98e5ca4a923a70a8ae9ba9e"
|
|
end
|
|
|
|
def install
|
|
# Build requires targets to be built in specific order
|
|
ENV.deparallelize
|
|
|
|
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
|
|
resources.each do |r|
|
|
r.stage do
|
|
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
Dir.mktmpdir("opamroot") do |opamroot|
|
|
ENV["OPAMROOT"] = opamroot
|
|
ENV["OPAMYES"] = "1"
|
|
ENV["ADD_REVISION"] = "1" if build.head?
|
|
system "opam", "init", "--no-setup", "--disable-sandboxing"
|
|
system "opam", "exec", "--", "opam", "pin", "add", "haxe", buildpath, "--no-action"
|
|
system "opam", "exec", "--", "opam", "install", "haxe", "--deps-only", "--working-dir", "--no-depexts"
|
|
system "opam", "exec", "--", "make"
|
|
end
|
|
|
|
# Rebuild haxelib as a valid binary
|
|
cd "extra/haxelib_src" do
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make"
|
|
end
|
|
rm "haxelib"
|
|
cp "extra/haxelib_src/haxelib", "haxelib"
|
|
|
|
bin.mkpath
|
|
system "make", "install", "INSTALL_BIN_DIR=#{bin}",
|
|
"INSTALL_LIB_DIR=#{lib}/haxe", "INSTALL_STD_DIR=#{lib}/haxe/std"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Add the following line to your .bashrc or equivalent:
|
|
export HAXE_STD_PATH="#{HOMEBREW_PREFIX}/lib/haxe/std"
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
ENV["HAXE_STD_PATH"] = "#{HOMEBREW_PREFIX}/lib/haxe/std"
|
|
system "#{bin}/haxe", "-v", "Std"
|
|
system "#{bin}/haxelib", "version"
|
|
|
|
(testpath/"HelloWorld.hx").write <<~EOS
|
|
import js.html.Console;
|
|
|
|
class HelloWorld {
|
|
static function main() Console.log("Hello world!");
|
|
}
|
|
EOS
|
|
system "#{bin}/haxe", "-js", "out.js", "-main", "HelloWorld"
|
|
|
|
cmd = if OS.mac?
|
|
"osascript -so -lJavaScript out.js 2>&1"
|
|
else
|
|
"node out.js"
|
|
end
|
|
assert_equal "Hello world!", shell_output(cmd).strip
|
|
end
|
|
end
|