-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (31 loc) · 1.02 KB
/
Build.PL
File metadata and controls
34 lines (31 loc) · 1.02 KB
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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
dist_name => 'cpanspec',
license => 'perl',
dist_author => 'Steven Pritchard <steve@cpan.org>',
dist_version_from => 'cpanspec',
requires => {
'Archive::Tar' => 0,
'Archive::Zip' => 0,
'IO::Uncompress::Bunzip2' => 0,
'File::Basename' => 0,
'FileHandle' => 0,
'Getopt::Long' => 0,
'locale' => 0,
'LWP::UserAgent' => 0,
'POSIX' => 0,
'Parse::CPAN::Packages' => 0,
'Pod::Simple::TextContent' => 0,
'Pod::Usage' => 0,
'Text::Autoformat' => 0,
'YAML' => 0,
},
script_files => [
'cpanspec',
'cpanget',
],
);
$builder->create_build_script();
# vi: set ai et: