File: rubysdl.gemspec

package info (click to toggle)
ruby-sdl 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,544 kB
  • ctags: 1,359
  • sloc: cpp: 7,598; ansic: 4,498; ruby: 2,246; makefile: 106; sh: 102
file content (21 lines) | stat: -rw-r--r-- 729 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- Ruby -*-

Gem::Specification.new do |spec|
  spec.name = "rubysdl"
  spec.version = "2.2.0"
  spec.summary = "The simple ruby extension library to use SDL"
  spec.description = <<-EOS
    Ruby/SDL is an extension library to use SDL(Simple DirectMedia
    Layer). This library enables you to control audio, keyboard,
    mouse, joystick, 3D hardware via OpenGL, and 2D video 
    framebuffer. Ruby/SDL is used by games and visual demos.
  EOS
  spec.license = "LGPL"
  spec.author = "Ohbayashi Ippei"
  spec.email = "ohai@kmc.gr.jp"
  spec.homepage = "http://www.kmc.gr.jp/~ohai/rubysdl.en.html"
  spec.files = `git ls-files`.split(/\n/)
  spec.test_files = []
  spec.extensions = ["extconf.rb"]
  spec.has_rdoc = false
end