Sha256: 4e0311809276837979990f9b10fa3d464405ed67d1ef916a1a389e7a0cf19a82
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
require 'mkmf' RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC'] $CFLAGS << " #{ENV["CFLAGS"]}" $CFLAGS << " -g" if RbConfig::MAKEFILE_CONFIG['CC'] =~ /gcc|clang/ $CFLAGS << " -O3" unless $CFLAGS[/-O\d/] $CFLAGS << " -Wall" end def sys(cmd) puts " -- #{cmd}" unless ret = xsystem(cmd) raise "ERROR: '#{cmd}' failed" end ret end MAKE_PROGRAM = find_executable('gmake') || find_executable('make') if MAKE_PROGRAM.nil? STDERR.puts "ERROR: GNU make is required to build Rugged" exit(1) end if p = ENV['LIBGIT2_PATH'] $INCFLAGS[0,0] = " -I#{File.join(p, 'include')} " $LDFLAGS << " -L#{p} " unless have_library 'git2' and have_header 'git2.h' STDERR.puts "ERROR: Invalid `LIBGIT2_PATH` environment" exit(1) end else CWD = File.expand_path(File.dirname(__FILE__)) LIBGIT2_DIR = File.join(CWD, '..', '..', 'vendor', 'libgit2') LIBGIT2_LIB_PATH = "#{CWD}/libgit2_embed.a" if !File.exists?(LIBGIT2_LIB_PATH) Dir.chdir(LIBGIT2_DIR) do sys("#{MAKE_PROGRAM} -f Makefile.embed") FileUtils.cp 'libgit2.a', LIBGIT2_LIB_PATH end end $INCFLAGS[0,0] = " -I#{LIBGIT2_DIR}/include " $LDFLAGS << " -L#{CWD} " unless have_library 'git2_embed' and have_header 'git2.h' STDERR.puts "ERROR: Failed to build libgit2" exit(1) end end create_makefile("rugged/rugged")
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rugged-0.19.0 | ext/rugged/extconf.rb |