You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-07-10 12:19:27 -07:00
ca2457a827
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@53457 d073be05-634f-4543-b044-5fe20cf6d1d6
26 lines
942 B
Ruby
26 lines
942 B
Ruby
require "rubygems"
|
|
|
|
PLUGIN = "ncurses"
|
|
NAME = "ncurses"
|
|
VERSION = "1.2.3"
|
|
AUTHOR = "Tobias Peters"
|
|
EMAIL = "t-peters@users.berlios.de"
|
|
HOMEPAGE = "http://ncurses-ruby.berlios.de/"
|
|
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."
|
|
|
|
spec = Gem::Specification.new do |s|
|
|
s.name = NAME
|
|
s.email = EMAIL
|
|
s.author = AUTHOR
|
|
s.version = VERSION
|
|
s.summary = SUMMARY
|
|
s.platform = Gem::Platform::RUBY
|
|
s.has_rdoc = false
|
|
s.homepage = HOMEPAGE
|
|
s.description = SUMMARY
|
|
s.autorequire = PLUGIN
|
|
s.require_paths = ["lib"]
|
|
s.files = Dir.glob("[A-Z]*") + Dir.glob("*.{c,h,rb}") + Dir.glob("{examples,lib}/**/*")
|
|
s.extensions = "extconf.rb"
|
|
end
|