]> Git — Sourcephile - git-remote-gpg.git/blob - Makefile.PL
bump to version 2020.03.20
[git-remote-gpg.git] / Makefile.PL
1 use 5.008004;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'git::remote::gpg',
6 VERSION_FROM => 'git-remote-gpg',
7 AUTHOR => 'Julien Moutinho',
8 LICENSE => 'gpl_3',
9 MIN_PERL_VERSION => '5.008004',
10 EXE_FILES => ['git-remote-gpg'],
11 PREREQ_PM => {
12 'strict' => 0,
13 'warnings' => 0,
14 'Carp' => 0,
15 'Cwd' => 0,
16 'File::Basename' => 0,
17 'File::Copy' => 0,
18 'File::Path' => 0,
19 'File::Spec::Functions' => 0,
20 'File::Temp' => 0,
21 'Getopt::Long' => 0,
22 'IPC::Run' => 0,
23 'IO::Handle' => 0,
24 'JSON' => 0,
25 'POSIX' => 0,
26 'URI' => 0,
27 'Pod::Usage' => 0,
28 'Data::Dumper' => 0,
29 },
30 (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
31 'meta-spec' => { version => 2 },
32 resources => {
33 repository => {
34 type => 'git',
35 url => 'git://git.sourcephile.fr/julm/git-remote-gpg',
36 web => 'http//git.sourcephile.fr/julm/git-remote-gpg',
37 },
38 }})
39 : ()
40 ),
41 );