-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
44 lines (43 loc) · 1.35 KB
/
Makefile.PL
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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Github::Backup',
AUTHOR => q{Steve Bertrand <[email protected]>},
VERSION_FROM => 'lib/Github/Backup.pm',
ABSTRACT_FROM => 'lib/Github/Backup.pm',
LICENSE => 'perl_5',
PL_FILES => {},
EXE_FILES => ['bin/github-backup', 'bin/github-backup-pass'],
MIN_PERL_VERSION => 5.006,
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => {
web => 'https://github.com/stevieb9/github-backup/issues',
},
repository => {
type => 'git',
url => 'https://github.com/stevieb9/github-backup.git',
web => 'https://github.com/stevieb9/github-backup',
},
},
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Git::Repository' => 1.320,
'Test::More' => 0,
},
PREREQ_PM => {
'Hook::Output::Tiny' => 0,
'JSON' => 0,
'LWP::UserAgent' => 6.19,
'Moo' => 2.003000,
'Pithub' => 0.01033,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Github-Backup-*' },
);