Sha256: d41259ee94e79f9b009d21662383de2a209e651b9957501e4b54cfc4839d6106

Contents?: true

Size: 1.81 KB

Versions: 1

Compression:

Stored size: 1.81 KB

Contents

require 'rake/gempackagetask'

NAME = 'gphys'
VER = '1.1.1b'

PKG_FILES = FileList[
  '**',
  'bin/**/*',
  'doc/**/*',
  'lib/**/*',
  'sample/**/*',
  'test/**/*',
  'testdata/**/*'
]

spec = Gem::Specification.new do |s|
  s.name             = NAME
  s.version          = VER
  s.authors           = ["Takeshi Horinouchi", "Ryo Mizuta",\
    "Daisuke Tsukahara", "Seiya Nishizawa", "Shin-ichi Takehiro"]
  s.email            = ['eriko@gfd-dennou.org']
  s.homepage         = 'http://www.gfd-dennou.org/arch/ruby/products/gphys/'
  s.licenses         = ["GFD Dennou Club"]
  s.platform         = Gem::Platform::RUBY
  s.summary          = %q{a multi-purpose class to handle Gridded Physical quantities}
  s.description      = %q{comprehensive library for self-descriptive gridded physical data (in NetCDF, GrADS, or on memory) with graphicsgraphicsgraphicsgraphics.}

  s.files            = PKG_FILES.to_a
  s.require_paths    = ['lib']
  s.test_files = Dir.glob("test/*")
  s.bindir    = 'bin'
  s.executables = ['gdir_client','gpaop','gpcut','gplist'\
    ,'gpmaxmin','gpvect','grads2nc_with_gphys','gdir_server'\
    ,'gpcat','gpedit','gpmath','gpprint','gpview']

  s.has_rdoc         = false
  #s.extra_rdoc_files = ['README']

  s.required_ruby_version = Gem::Requirement.new(">= 1.6")

  s.add_runtime_dependency(%q<narray>, [">= 0"])
  s.add_runtime_dependency(%q<numru-misc>, [">= 0.0.4"])
  s.add_runtime_dependency(%q<numru-units>, [">= 1.5"])
  s.add_runtime_dependency(%q<narray_miss>, [">= 0"])
  s.add_runtime_dependency(%q<ruby-netcdf>, [">= 0.5.2"])
  s.add_runtime_dependency(%q<ruby-dcl>, [">= 1.2.1"])
  s.add_runtime_dependency(%q<ruby-fftw3>, [">= 0.3"])

  s.extensions << "extconf.rb"
  #s.extensions << "extconf.rb --enable-shared"
end

Rake::GemPackageTask.new(spec) do |pkg|
  pkg.gem_spec = spec
  pkg.need_tar = true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gphys-1.1.1b Rakefile