mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
18 lines
523 B
Ruby
18 lines
523 B
Ruby
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'
|
|
spec.linker.libraries << 'termcap'
|
|
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
|