2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
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
|
2018-05-30 09:01:35 -04:00
|
|
|
def self.build(extension, dest_path, results, args=[], lib_dir=nil)
|
2018-11-21 05:20:47 -05:00
|
|
|
unless File.exist?('Makefile')
|
2007-11-10 02:48:56 -05:00
|
|
|
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
|