File: RDF.pm

package info (click to toggle)
librdf-helper-properties-perl 0.24-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 256 kB
  • sloc: perl: 1,677; makefile: 10
file content (28 lines) | stat: -rw-r--r-- 421 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
#line 1
package Module::Install::RDF;

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

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

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

sub write_meta_ttl
{
	my $self = shift;
	my $file = shift || "META.ttl";
	$self->admin->write_meta_ttl($file) if $self->is_admin;
	$self->clean_files($file);
}

1;

__END__
#line 76