forked from rock-core/autobuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
25 lines (18 loc) · 993 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
require 'utilrb/rake_common'
Utilrb::Rake.hoe do
Hoe.spec 'autobuild' do
developer "Sylvain Joyeux", "[email protected]"
self.urls = ["http://rock-robotics.org/stable/documentation/autoproj"]
self.summary = 'Library to handle build systems and import mechanisms'
self.description = "Collection of classes to handle build systems (CMake, autotools, ...) and import mechanisms (tarballs, CVS, SVN, git, ...). It also offers a Rake integration to import and build such software packages. It is the backbone of the autoproj (http://rock-robotics.org/autoproj) integrated software project management tool."
self.email = %q{[email protected]}
license 'BSD'
self.spec_extras[:required_ruby_version] = ">= 1.9.2"
self.extra_deps <<
['rake', '>= 0.9.0'] <<
['utilrb', '>= 1.6.0'] <<
['highline', '>= 0']
end
Rake.clear_tasks(/publish_docs/, /default/)
end
task "default"