File: DOAP.pm

package info (click to toggle)
libmodule-install-doap-perl 0.006-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 300 kB
  • sloc: perl: 3,152; makefile: 2
file content (56 lines) | stat: -rw-r--r-- 944 bytes parent folder | download | duplicates (5)
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
55
56
package Module::Install::DOAP;

use 5.008;
use base qw(Module::Install::Base);
use strict;

our $VERSION = '0.006';
our $AUTHOR_ONLY = 1;

sub doap_metadata
{
	my $self = shift;
	$self->admin->doap_metadata(@_) if $self->is_admin;
}

1;

__END__
=head1 NAME

Module::Install::DOAP - generate META.yml data from DOAP

=head1 SYNOPSIS

In Makefile.PL:

  rdf_metadata;
  doap_metadata;
  
=head1 DESCRIPTION

This Module::Install plugin generates your META.yml file from RDF data
(especially DOAP) in your distribution's 'meta' directory.

=head1 BUGS

Please report any bugs to L<http://rt.cpan.org/>.

=head1 SEE ALSO

L<Module::Install>, L<Module::Install::DOAPChangeSets> .

L<http://www.perlrdf.org/>.

=head1 AUTHOR

Toby Inkster E<lt>tobyink@cpan.orgE<gt>.

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2011 by Toby Inkster

This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

=cut