class Emscripten < Formula desc "LLVM bytecode to JavaScript compiler" homepage "https://kripken.github.io/emscripten-site/" stable do url "https://github.com/emscripten-core/emscripten/archive/1.38.25.tar.gz" sha256 "4d6fa350895fabc25b89ce5f9dcb528e719e7c2bf7dacab2a3e3cc818ecd7019" resource "fastcomp" do url "https://github.com/emscripten-core/emscripten-fastcomp/archive/1.38.25.tar.gz" sha256 "1876c7c6e72c4c4d5ae7d9c7c9b7486ebe01092be4a1d3751a177a021b2da980" end resource "fastcomp-clang" do url "https://github.com/emscripten-core/emscripten-fastcomp-clang/archive/1.38.25.tar.gz" sha256 "7c7b9ddc5abba5a342c2a40110c746ee7a3d3fad58ede53b577926f9fe4171d7" end end bottle do cellar :any sha256 "da0e0c8dffd9e6dd2ad9729a188495d0bd23657726b1d14bddd92f2a5c636283" => :mojave sha256 "54d841edb4a23c5ecb4aa74e578e387238048909afa7eb8266894ca18e0d6d45" => :high_sierra sha256 "7e21c3250854551a07309410b3bd3aab581743f94841d41a6f5f84daa0e123af" => :sierra end head do url "https://github.com/emscripten-core/emscripten.git", :branch => "incoming" resource "fastcomp" do url "https://github.com/emscripten-core/emscripten-fastcomp.git", :branch => "incoming" end resource "fastcomp-clang" do url "https://github.com/emscripten-core/emscripten-fastcomp-clang.git", :branch => "incoming" end end depends_on "cmake" => :build depends_on "node" depends_on "python@2" depends_on "yuicompressor" def install ENV.cxx11 # rewrite hardcoded paths from system python to homebrew python python2_shebangs = `grep --recursive --files-with-matches ^#!/usr/bin/python #{buildpath}` python2_shebang_files = python2_shebangs.lines.sort.uniq python2_shebang_files.map! { |f| Pathname(f.chomp) } python2_shebang_files.reject! &:symlink? inreplace python2_shebang_files, %r{^#!/usr/bin/python2?$}, "#!#{Formula["python@2"].opt_bin}/python2" # All files from the repository are required as emscripten is a collection # of scripts which need to be installed in the same layout as in the Git # repository. libexec.install Dir["*"] (buildpath/"fastcomp").install resource("fastcomp") (buildpath/"fastcomp/tools/clang").install resource("fastcomp-clang") cmake_args = std_cmake_args.reject { |s| s["CMAKE_INSTALL_PREFIX"] } cmake_args = [ "-DCMAKE_BUILD_TYPE=Release", "-DCMAKE_INSTALL_PREFIX=#{libexec}/llvm", "-DLLVM_TARGETS_TO_BUILD='X86;JSBackend'", "-DLLVM_INCLUDE_EXAMPLES=OFF", "-DLLVM_INCLUDE_TESTS=OFF", "-DCLANG_INCLUDE_TESTS=OFF", "-DOCAMLFIND=/usr/bin/false", "-DGO_EXECUTABLE=/usr/bin/false", ] mkdir "fastcomp/build" do system "cmake", "..", *cmake_args system "make" system "make", "install" end %w[em++ em-config emar emcc emcmake emconfigure emlink.py emmake emranlib emrun emscons].each do |emscript| bin.install_symlink libexec/emscript end end def caveats; <<~EOS Manually set LLVM_ROOT to #{opt_libexec}/llvm/bin and comment out BINARYEN_ROOT in ~/.emscripten after running `emcc` for the first time. EOS end test do system bin/"emcc" assert_predicate testpath/".emscripten", :exist?, "Failed to create sample config" end end