Imported File#ftype spec from rubyspecs.
[rbx.git] / lib / rubygems / ext / builder.rb
blob576951a5666cb68a9b7136d244dee13649d9d68f
1 #--
2 # Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
3 # All rights reserved.
4 # See LICENSE.txt for permissions.
5 #++
7 require 'rubygems/ext'
9 class Gem::Ext::Builder
11   def self.class_name
12     name =~ /Ext::(.*)Builder/
13     $1.downcase
14   end
16   def self.make(dest_path, results)
17     unless File.exist? 'Makefile' then
18       raise Gem::InstallError, "Makefile not found:\n\n#{results.join "\n"}" 
19     end
21     mf = File.read('Makefile')
22     mf = mf.gsub(/^RUBYARCHDIR\s*=\s*\$[^$]*/, "RUBYARCHDIR = #{dest_path}")
23     mf = mf.gsub(/^RUBYLIBDIR\s*=\s*\$[^$]*/, "RUBYLIBDIR = #{dest_path}")
25     File.open('Makefile', 'wb') {|f| f.print mf}
27     make_program = ENV['make']
28     unless make_program then
29       make_program = (/mswin/ =~ RUBY_PLATFORM) ? 'nmake' : 'make'
30     end
32     ['', ' install'].each do |target|
33       cmd = "#{make_program}#{target}"
34       results << cmd
35       results << `#{cmd} #{redirector}`
37       raise Gem::InstallError, "make#{target} failed:\n\n#{results}" unless
38         $?.exitstatus.zero?
39     end
40   end
42   def self.redirector
43     '2>&1'
44   end
46   def self.run(command, results)
47     results << command
48     results << `#{command} #{redirector}`
50     unless $?.exitstatus.zero? then
51       raise Gem::InstallError, "#{class_name} failed:\n\n#{results.join "\n"}"
52     end
53   end
55 end