forked from danboo/perl-tie-hash-interpolate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
25 lines (23 loc) · 684 Bytes
/
Build.PL
File metadata and controls
25 lines (23 loc) · 684 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Tie::Hash::Interpolate',
license => 'perl',
dist_author => q{Dan Boorstein <danboo@cpan.org>},
dist_version_from => 'lib/Tie/Hash/Interpolate.pm',
build_requires => {
'Test::More' => 0,
'Scalar::Util' => 0,
},
add_to_cleanup => [ 'Tie-Hash-Interpolate-*' ],
create_makefile_pl => 'traditional',
meta_merge =>
{
resources =>
{
repository => 'http://github.com/danboo/perl-tie-hash-interpolate/',
}
},
);
$builder->create_build_script();