aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 3995b266b42f6013075177dac29c1a99bfa4850e (plain)
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
#!perl
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
	NAME          => 'Hal::Cdroms',
	VERSION_FROM  => 'lib/Hal/Cdroms.pm',
	ABSTRACT_FROM => 'lib/Hal/Cdroms.pm',
	AUTHOR        => 'Pixel <pixel@rigaux.org>',
	LICENSE       => 'gpl_2', # or Artistic
	MIN_PERL_VERSION => '5.008000',
	'CONFIGURE_REQUIRES' => {
	    'ExtUtils::MakeMaker' => '6.64'
	},
	META_MERGE => {
	    'meta-spec' => { version => 2 },
	    release_status => 'stable',
	    resources => {
                repository  => {
		    type => 'git',
		    url => 'git://git.mageia.org/software/perl/perl-Hal-Cdroms/',
		    web =>  'http://gitweb.mageia.org/software/perl/perl-Hal-Cdroms/',
		},
	    },
	},
);