Pullup ticket #2800.
[pkgsrc.git] / devel / ruby-ncurses / files / gemspec
1 require "rubygems"
2
3 PLUGIN   = "ncurses"
4 NAME     = "ncurses"
5 VERSION  = "1.1"
6 AUTHOR   = "Tobias Peters"
7 EMAIL    = "t-peters@users.berlios.de"
8 HOMEPAGE = "http://ncurses-ruby.berlios.de/"
9 SUMMARY  = "This wrapper provides access to the functions, macros, global variables and constants of the ncurses library.  These are mapped to a Ruby Module named \"Ncurses\":  Functions and external variables are implemented as singleton functions of the Module Ncurses."
10
11 spec = Gem::Specification.new do |s|
12   s.name          = NAME
13   s.email         = EMAIL
14   s.author        = AUTHOR
15   s.version       = VERSION
16   s.summary       = SUMMARY
17   s.platform      = Gem::Platform::RUBY
18   s.has_rdoc      = false
19   s.homepage      = HOMEPAGE
20   s.description   = SUMMARY
21   s.autorequire   = PLUGIN
22   s.require_paths = ["lib"]
23   s.files = Dir.glob("[A-Z]*") + Dir.glob("*.{c,h,rb}") + Dir.glob("{examples,lib}/**/*")
24   s.extensions    = "extconf.rb"
25 end