Sha256: 4042e412d1dbcbf0e932fc52b0e94939c8c3b5c656efc7d73f689e8a884375af

Contents?: true

Size: 630 Bytes

Versions: 3

Compression:

Stored size: 630 Bytes

Contents

MRuby::Gem::Specification.new('mruby-bin-mirb') do |spec|
  spec.license = 'MIT'
  spec.author  = 'mruby developers'
  spec.summary = 'mirb command'

  if spec.build.cc.search_header_path 'readline/readline.h'
    spec.cc.defines << "ENABLE_READLINE"
    if spec.build.cc.search_header_path 'termcap.h'
      if MRUBY_BUILD_HOST_IS_CYGWIN then
        spec.linker.libraries << 'ncurses'
      else
        spec.linker.libraries << 'termcap'
      end
    end
    spec.linker.libraries << 'readline'
  elsif spec.build.cc.search_header_path 'linenoise.h'
    spec.cc.defines << "ENABLE_LINENOISE"
  end

  spec.bins = %w(mirb)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
webruby-0.9.3 modules/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake
webruby-0.9.2 modules/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake
webruby-0.9.1 modules/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake