-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (32 loc) · 947 Bytes
/
Build.PL
File metadata and controls
34 lines (32 loc) · 947 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
27
28
29
30
31
32
33
34
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Sort::Bucket',
dist_author => 'Nick Cleaton <nick@cleaton.net>',
all_from => 'lib/Sort/Bucket.pm',
license => 'perl',
include_dirs => '.',
requires => {
'Exporter' => 0,
'XSLoader' => 0,
},
build_requires => {
'Devel::Refcount' => 0,
'Digest::MD5' => 0,
'ExtUtils::CBuilder' => 0,
'List::Util' => 0,
'Test::Exception' => 0,
'Test::Group' => 0,
'Test::Group::Foreach' => 0,
'Test::More' => 0.88, # Need 0.88 for done_testing()
'Time::HiRes' => 0,
},
meta_merge => {
resources => {
repository => 'git://github.com/ncleaton/sort-bucket.git',
},
},
create_makefile_pl => 'small',
);
$builder->create_build_script();