forked from ryanfb/ruby-opencv
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathRakefile
34 lines (28 loc) · 768 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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', '[email protected]')
p.email = ['[email protected]']
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