File: dh_rdoc

package info (click to toggle)
ruby-pkg-tools 0.14
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 108 kB
  • ctags: 51
  • sloc: ruby: 253; perl: 15; sh: 5; makefile: 1
file content (54 lines) | stat: -rwxr-xr-x 1,016 bytes parent folder | download | duplicates (4)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/perl -w

=head1 NAME

dh_rdoc - generates and installs Ruby documentation

=cut

use strict;
use Debian::Debhelper::Dh_Lib;

=head1 SYNOPSIS

B<dh_rdoc> [S<I<debhelper options>>] [B<-d>] [S<I<library dirs ...>>]

=head1 DESCRIPTION

dh_rdoc is a debhelper program that is responsible for generating
documentation, in both rdoc and RI formats.

=head1 CONFORMS TO

Debian policy, version 3.6.2.1

Ruby policy, unofficial proposed version

=cut

init();

foreach my $package (@{$dh{DOPACKAGES}}) {
    my $doc_dir = tmpdir($package)."/usr/share/doc/$package/rdoc";
    my $config  = pkgfile($package, 'rdoc');
    my @dirs = ('lib');
    if (-r $config) {
        open F, $config;
		local $/;
        @dirs = split(/\s/s, <F>);
        close F;
    }
    doit(qw(rdoc --all --inline-source --diagram --fileboxes --line-numbers --fmt=html -o), $doc_dir, @dirs);
}

=head1 SEE ALSO

L<debhelper(7)>

This program is a part of ruby-pkg-tools.

=head1 AUTHOR

Esteban Manchado Velzquez <zoso@debian.org>

=cut