File: RDF.pm

package info (click to toggle)
librdf-helper-properties-perl 0.22-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 256 kB
  • ctags: 141
  • sloc: perl: 1,769; makefile: 14
file content (20 lines) | stat: -rw-r--r-- 260 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#line 1
package Module::Install::RDF;

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

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

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

1;

__END__
#line 60