homebrew-core/Formula/v8@3.15.rb
2017-04-03 10:01:35 +01:00

47 lines
1.6 KiB
Ruby

class V8AT315 < Formula
desc "Google's open source JavaScript engine"
homepage "https://github.com/v8/v8/wiki"
url "https://github.com/v8/v8-git-mirror/archive/3.15.11.18.tar.gz"
sha256 "93a4945a550e5718d474113d9769a3c010ba21e3764df8f22932903cd106314d"
bottle do
cellar :any
sha256 "fe5909ae35e63bbf606bce80250ab6f4d5ad824d4b1b54fa7055eb747be0f77f" => :sierra
sha256 "2bc44d1f04d0fd00f053ecef2f4274ee1edefda12baf2c1a4ec2bda5537e6ffb" => :el_capitan
sha256 "51f708fc6818dfc3ebc29ee5f254e0394ec874a5a7aa4532c4e48308754bcd35" => :yosemite
end
keg_only :versioned_formula
resource "gyp" do
url "https://chromium.googlesource.com/external/gyp.git",
:revision => "f7bc250ccc4d619a1cf238db87e5979f89ff36d7"
end
def install
(buildpath/"build/gyp").install resource("gyp")
# fix up libv8.dylib install_name
# https://github.com/Homebrew/homebrew/issues/36571
# https://code.google.com/p/v8/issues/detail?id=3871
inreplace "tools/gyp/v8.gyp",
"'OTHER_LDFLAGS': ['-dynamiclib', '-all_load']",
"\\0, 'DYLIB_INSTALL_NAME_BASE': '#{opt_lib}'"
system "make", "native",
"-j#{ENV.make_jobs}",
"library=shared",
"snapshot=on",
"console=readline"
prefix.install "include"
cd "out/native" do
lib.install Dir["lib*"]
bin.install "d8", "lineprocessor", "mksnapshot", "preparser", "process", "shell" => "v8"
end
end
test do
assert_equal "Hello World!", pipe_output("#{bin}/v8 -e 'print(\"Hello World!\")'").chomp
end
end