17a18f9720
Closes Homebrew/homebrew#30344.
87 lines
2.6 KiB
Ruby
87 lines
2.6 KiB
Ruby
require "formula"
|
|
|
|
class Emscripten < Formula
|
|
homepage "http://emscripten.org"
|
|
url "https://github.com/kripken/emscripten/archive/1.20.0.tar.gz"
|
|
sha1 "9a739dc963219f7c4ab70395ac21854e472457a6"
|
|
|
|
head "https://github.com/kripken/emscripten.git", :branch => "incoming"
|
|
|
|
bottle do
|
|
sha1 "93d836d075cefe1174a96d707f3702d7d7643f32" => :mavericks
|
|
sha1 "0ae5c8ff233727b9b49db1aa3b5b7ebc24665b91" => :mountain_lion
|
|
sha1 "fb534c99cb0e153a6478f6b065dd179c23205675" => :lion
|
|
end
|
|
|
|
head do
|
|
resource "fastcomp" do
|
|
url "https://github.com/kripken/emscripten-fastcomp.git", :branch => "incoming"
|
|
end
|
|
|
|
resource "fastcomp-clang" do
|
|
url "https://github.com/kripken/emscripten-fastcomp-clang.git", :branch => "incoming"
|
|
end
|
|
end
|
|
|
|
stable do
|
|
resource "fastcomp" do
|
|
url "https://github.com/kripken/emscripten-fastcomp/archive/1.16.0.tar.gz"
|
|
sha1 "ca10c5a8059fdd321143d8f10c0810176be3d467"
|
|
end
|
|
|
|
resource "fastcomp-clang" do
|
|
url "https://github.com/kripken/emscripten-fastcomp-clang/archive/1.16.0.tar.gz"
|
|
sha1 "768a15d3a8cd9e92f87521cadf3e5f63f3e24fa1"
|
|
end
|
|
end
|
|
|
|
depends_on "node"
|
|
depends_on "closure-compiler" => :optional
|
|
depends_on "yuicompressor"
|
|
|
|
def install
|
|
# OSX doesn't provide a "python2" binary so use "python" instead.
|
|
python2_shebangs = `grep --recursive --files-with-matches ^#!/usr/bin/.*python2$ #{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/.*python)2$}, "\\1"
|
|
|
|
# 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")
|
|
|
|
args = [
|
|
"--prefix=#{libexec}/llvm",
|
|
"--enable-optimized",
|
|
"--enable-targets=host,js",
|
|
"--disable-assertions",
|
|
"--disable-bindings",
|
|
]
|
|
|
|
cd "fastcomp" do
|
|
system "./configure", *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
|
|
|
|
test do
|
|
system "#{libexec}/llvm/bin/llvm-config", "--version"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Manually set LLVM_ROOT to \"#{opt_prefix}/libexec/llvm/bin\"
|
|
in ~/.emscripten after running `emcc` for the first time.
|
|
EOS
|
|
end
|
|
end
|