aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 19473897828ef41604e2928d7698156ffa35bfef (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
31
32
33
34
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(
    NAME              => 'File::BackupCopy',
    VERSION_FROM      => 'lib/File/BackupCopy.pm',
    ABSTRACT_FROM     => 'lib/File/BackupCopy.pm',
    LICENSE           => 'gpl_3',
    AUTHOR            => 'Sergey Poznyakoff <gray@gnu.org>',
    MIN_PERL_VERSION  => 5.006,
    PREREQ_PM         => {
	'File::Temp'  => 0.23
    },
    TEST_REQUIRES     => {
	'File::Cmp' => 1.07
    },
    META_MERGE        => {
	'meta-spec' => { version => 2 },
        resources => {
	    repository => {
		type => 'git',
                url => 'git://git.gnu.org.ua/file-backup.git',
		web => 'http://git.gnu.org.ua/cgit/file-backup.git/',
	    },
	},
	provides => Module::Metadata->provides(version => '1.4',
					       dir => 'lib')
    }    
);

    
    

Return to:

Send suggestions and report system problems to the System administrator.