summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 58bfb6af24602eb47b3da40add03b53e71cc63af (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
27
28
29
30
use ExtUtils::MakeMaker;

if (-e 'lib/MDK/Common.pm.pl') {
    system("perl lib/MDK/Common.pm.pl > lib/MDK/Common.pm");
}

WriteMakefile(
    NAME          => 'MDK::Common',
    VERSION_FROM  => 'lib/MDK/Common.pm',
    ABSTRACT_FROM => 'lib/MDK/Common.pm',
    AUTHOR        => 'Thierry Vignaud <thierry.vignaud@gmail.com>',
    LICENSE	  => 'gpl_2',
    dist	  => { COMPRESS => "xz -f" },
    PREREQ_PM     => {
	    'File::Sync' => '0',
    },
    MIN_PERL_VERSION => '5.008001',
    META_MERGE => {
	'meta-spec' => { version => 2 },
        resources => {
            repository  => {
		type => 'git',
		url =>  'git://git.mageia.org/software/perl/perl-MDK-Common',
		web =>  'http://gitweb.mageia.org/software/perl/perl-MDK-Common/',
	    },
        },
	release_status => 'stable'
    },
    MIN_PERL_VERSION => '5.008001',
);