homebrew-core/Formula/v8.rb
2013-02-01 18:40:25 -08:00

31 lines
956 B
Ruby

require 'formula'
class V8 < Formula
homepage 'http://code.google.com/p/v8/'
# Use the official github mirror, it is easier to find tags there
url 'https://github.com/v8/v8/archive/3.15.11.tar.gz'
sha1 '0c47b3a5409d71d4fd6581520c8972f7451a87e4'
head 'https://github.com/v8/v8.git'
def install
# Lie to `xcode-select` for now to work around a GYP bug that affects
# CLT-only systems:
#
# http://code.google.com/p/gyp/issues/detail?id=292
ENV['DEVELOPER_DIR'] = MacOS.dev_tools_path unless MacOS::Xcode.installed?
system 'make dependencies'
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
end