2007-11-10 02:48:56 -05:00
|
|
|
#--
|
|
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
|
|
# All rights reserved.
|
|
|
|
# See LICENSE.txt for permissions.
|
|
|
|
#++
|
|
|
|
|
|
|
|
class Gem::Ext::ConfigureBuilder < Gem::Ext::Builder
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def self.build(extension, directory, dest_path, results, args=[])
|
2007-11-10 02:48:56 -05:00
|
|
|
unless File.exist?('Makefile') then
|
|
|
|
cmd = "sh ./configure --prefix=#{dest_path}"
|
2012-11-29 01:52:18 -05:00
|
|
|
cmd << " #{args.join ' '}" unless args.empty?
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
run cmd, results
|
|
|
|
end
|
|
|
|
|
|
|
|
make dest_path, results
|
|
|
|
|
|
|
|
results
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|