forked from gitpan/cPanel-SyncUtil
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
26 lines (25 loc) · 797 Bytes
/
Makefile.PL
File metadata and controls
26 lines (25 loc) · 797 Bytes
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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'cPanel::SyncUtil',
ABSTRACT_FROM => 'lib/cPanel/SyncUtil.pm',
AUTHOR => 'cPanel Inc. <http://cpanel.net>',
VERSION_FROM => 'lib/cPanel/SyncUtil.pm',
PREREQ_PM => {
'File::Slurp' => 0,
'File::Find' => 0,
'Digest::MD5::File' => 0,
'Digest::SHA' => 0,
'Archive::Tar' => 0,
'Getopt::Std' => 0,
},
META_MERGE => {
build_requires => {
'Test::More' => 0, # For testing
},
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'http://cpanel.net',
repository => 'https://github.com/CpanelInc/cPanel-SyncUtil',
},
},
);