File: RDF.pm

package info (click to toggle)
libmodule-install-trustmetayml-perl 0.001-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 304 kB
  • sloc: perl: 2,939; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#line 1
package Module::Package::Dist::RDF;

use 5.008003;
our $VERSION = '0.001';

package Module::Package::Dist::RDF::standard;

use 5.008003;
use strict;
use base qw[Module::Package::Dist];
our $VERSION = '0.001';

sub _main
{
	my ($self) = @_;
	$self->mi->trust_meta_yml;
#	$self->mi->auto_install;
}

1;