1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

Compile now requires the fetch task, and I converted task names to symbols

This commit is contained in:
Logan Lowell 2011-06-15 15:55:42 -05:00
parent c7867d0c6e
commit 24b575c1e9

View file

@ -23,23 +23,23 @@ Bundler::GemHelper.install_tasks
# end
desc "Get the latest source"
task "fetch" do
task :fetch do
puts "Fetching latest from github..."
if File.exist? File.join('lib', 'libv8', 'v8') then
Dir.chdir(File.join('lib', 'libv8', 'v8')) do
`git fetch`
`git checkout tags/#{`git tag`.split.last}`
`git checkout tags/#{`git tag`.split.sort.last}`
end
else
`git clone https://github.com/v8/v8.git lib/libv8/v8`
Dir.chdir(File.join('lib', 'libv8', 'v8')) do
`git checkout tags/#{`git tag`.split.last}`
`git checkout tags/#{`git tag`.split.sort.last}`
end
end
end
desc "Compile the V8 JavaScript engine"
task "compile" do
task :compile => :fetch do
puts "Compiling V8..."
Dir.chdir(File.join('lib', 'libv8')) do
`make`
@ -47,14 +47,14 @@ task "compile" do
end
desc "Clean up from the build"
task "clean" do
task :clean do
Dir.chdir(File.join('lib', 'libv8')) do
`make clean`
end
end
desc "Create a binary gem for this current platform"
task "binary" => "compile" do
task :binary => :compile do
gemspec = eval(File.read('libv8.gemspec'))
gemspec.extensions.clear
gemspec.platform = Gem::Platform.new(RUBY_PLATFORM)