mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
Initial commit, with some minor changes from orig (date, exec bit, line endings, /usr/bin/env)
This commit is contained in:
commit
9196cb13aa
117 changed files with 16536 additions and 0 deletions
34
Rakefile
Normal file
34
Rakefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# -*- ruby -*-
|
||||
|
||||
require 'rubygems'
|
||||
require 'hoe'
|
||||
require './lib/version'
|
||||
|
||||
Hoe.new('opencv', OpenCV::VERSION) do |p|
|
||||
p.author = ['Masakazu Yonekura']
|
||||
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
||||
p.description = <<EOF
|
||||
OpenCV wrapper for Ruby
|
||||
EOF
|
||||
p.rubyforge_name = 'opencv'
|
||||
p.developer('lsxi', 'masakazu.yonekura@gmail.com')
|
||||
p.email = ['masakazu.yonekura@gmail.com']
|
||||
|
||||
p.need_tar = false
|
||||
p.need_zip = false
|
||||
# p.rdoc_pattern =
|
||||
# p.remote_rdoc_dir =
|
||||
# p.rsync =
|
||||
p.spec_extras = {
|
||||
:extensions => %w{ext/extconf.rb}
|
||||
}
|
||||
p.summary = 'OpenCV wrapper for Ruby.'
|
||||
# p.test_globs = 'spec/**/*_spec.rb'
|
||||
p.clean_globs |= ['*.o']
|
||||
|
||||
p.url = 'http://blueruby.mydns.jp/opencv'
|
||||
|
||||
p.extra_deps << ['hoe']
|
||||
end
|
||||
|
||||
# vim: syntax=Ruby
|
Loading…
Add table
Add a link
Reference in a new issue