diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-07-01 20:39:46 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-07-01 20:39:46 +0200 |
commit | 5f5c9912d68f73b91fccc83f0cc57ee62d8f4a4f (patch) | |
tree | afac7238b10c135c718ad52f80f53f7183e9e153 | |
parent | c320012ebd38fe5498cfa8435fa3724729334ec9 (diff) |
Package man files
Define a rule in the Rakefile to generate them, and change the Dir[]
into a FileList[] into the gemspec. The latter change has the downside
of requiring Rake's FileList, but the upside of listing non-existing
files, so that Rake can create them, if possible, or complain if they
are just missing.
-rw-r--r-- | Rakefile | 4 | ||||
-rw-r--r-- | rbot.gemspec | 4 |
2 files changed, 7 insertions, 1 deletions
@@ -4,6 +4,10 @@ require 'rake/gempackagetask' task :default => [:buildext] +rule '.1' => ['.xml'] do |t| + sh "xsltproc -nonet -o #{t.name} /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl #{t.source}" +end + SPECFILE = 'rbot.gemspec' # The Rakefile is also used after installing the gem, to build # the .mo files. Since in this case the SPECFILE is not available, diff --git a/rbot.gemspec b/rbot.gemspec index a2e94748..5d563b53 100644 --- a/rbot.gemspec +++ b/rbot.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |s| EOF s.requirements << 'Ruby, version 1.8.0 (or newer)' - s.files = Dir[ + s.files = FileList[ 'lib/**/*.rb', 'bin/*', 'data/rbot/**/*', @@ -23,6 +23,8 @@ Gem::Specification.new do |s| 'ChangeLog', 'INSTALL', 'Usage_en.txt', + 'man/rbot.1', + 'man/rbot-remote.1', 'setup.rb', 'launch_here.rb', 'po/*.pot', |