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:
parent
c7867d0c6e
commit
24b575c1e9
1 changed files with 6 additions and 6 deletions
12
Rakefile
12
Rakefile
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue