aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: c844ef469c3cdad8b630ccb72835970ae2ccb737 (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
35
36
37
38
39
40
41
42
43
44
45
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Module::Metadata;

my %makefile_args = (
    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.014002,
    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/',
	    },
	    bugtracker => {
	        web => 'https://puszcza.gnu.org.ua/bugs/?group=file-backup',
    	        mailto => 'gray+file-backup@gnu.org.ua'
            }
	},
	provides => Module::Metadata->provides(version => '1.4',
					       dir => 'lib')
    }    
);

unless (eval { symlink("",""); 1 }) {
    if ($^O eq 'MSWin32') {
	$makefile_args{PREREQ_PM}{'Win32API::File'} = 0.1203;
    }
}

WriteMakefile(%makefile_args);

    

Return to:

Send suggestions and report system problems to the System administrator.