homebrew-core/Formula/emscripten.rb

90 lines
2.7 KiB
Ruby
Raw Normal View History

require "formula"
class Emscripten < Formula
homepage "https://kripken.github.io/emscripten-site/"
url "https://github.com/kripken/emscripten/archive/1.28.0.tar.gz"
sha1 "6d90ed5bb4aa3b54a626e451937754a9ae34650f"
2014-05-08 08:52:56 +00:00
bottle do
2014-12-18 00:58:11 +00:00
sha1 "a5fe0b92e8d915988ca5bce83b4f5d739a1f154b" => :yosemite
sha1 "c59c1306fcba0acc6ab4f749977f65dd52ad3c2f" => :mavericks
sha1 "7fd747e61f0fc764124c27b20c5d3625496b3297" => :mountain_lion
2014-05-08 08:52:56 +00:00
end
head do
2014-09-05 00:49:29 +00:00
url "https://github.com/kripken/emscripten.git", :branch => "incoming"
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.28.0.tar.gz"
sha1 "fd8cb60d7d5c33d435a0a772084baee634d6ce61"
end
resource "fastcomp-clang" do
url "https://github.com/kripken/emscripten-fastcomp-clang/archive/1.28.0.tar.gz"
sha1 "d01ab3763194c04c78c30dfa632bf52a90bbdb71"
end
end
depends_on :python if MacOS.version <= :snow_leopard
depends_on "node"
depends_on "closure-compiler" => :optional
depends_on "yuicompressor"
def install
2014-06-07 13:59:48 +00:00
# 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.
2014-07-21 02:32:04 +00:00
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
2014-06-07 13:59:48 +00:00
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_libexec}/llvm/bin
2014-06-07 13:59:48 +00:00
in ~/.emscripten after running `emcc` for the first time.
EOS
end
end