File: RDF.pm

package info (click to toggle)
libhtml-microformats-perl 0.105-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,340 kB
  • sloc: perl: 14,121; makefile: 10; sh: 1
file content (36 lines) | stat: -rw-r--r-- 764 bytes parent folder | download | duplicates (7)
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
#line 1
package Module::Package::Dist::RDF;

my $explanation = q<
	This is the component of Module::Package::RDF which gets
	bundled with the distribution.
>;

use 5.005;
use strict;

BEGIN {
	$Module::Package::Dist::RDF::AUTHORITY = 'cpan:TOBYINK';
	$Module::Package::Dist::RDF::VERSION   = '0.008';
	@Module::Package::Dist::RDF::ISA       = 'Module::Package::Dist';
}

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

{
	package Module::Package::Dist::RDF::standard;
	use 5.005;
	use strict;
	BEGIN {
		$Module::Package::Dist::RDF::standard::AUTHORITY = 'cpan:TOBYINK';
		$Module::Package::Dist::RDF::standard::VERSION   = '0.008';
		@Module::Package::Dist::RDF::standard::ISA       = 'Module::Package::Dist::RDF';
	}
}

1;