-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
27 lines (24 loc) · 1.12 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
#!/usr/bin/perl
use 5.006;
use strict;
use ExtUtils::MakeMaker;
WriteMakefile( NAME => 'Brackup',
VERSION_FROM => 'lib/Brackup.pm',
EXE_FILES => [ 'brackup', 'brackup-restore', 'brackup-target',
'brackup-mount', 'brackup-verify-inventory',
'brackup-verify-chunks',
],
PREREQ_PM => {
'ExtUtils::Manifest' => 1.52, # For spaces in files in MANIFEST
'DBD::SQLite' => 0,
'Digest::SHA1' => 0,
'DBI' => 0,
'File::Temp' => 0.19, # require a seekable File::Temp + EXLOCK support
'IO::InnerFile' => 0,
'String::Escape' => 0,
'Try::Tiny' => 0,
'Test::More' => 0.88, # For done_testing
},
ABSTRACT_FROM => 'lib/Brackup.pm',
AUTHOR => 'Brad Fitzpatrick <[email protected]>',
);