-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.PL
More file actions
executable file
·46 lines (37 loc) · 941 Bytes
/
Build.PL
File metadata and controls
executable file
·46 lines (37 loc) · 941 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
35
36
37
38
39
40
41
42
43
44
45
46
use Module::Build;
use strict;
use warnings;
my $build = Module::Build->new(
module_name => 'Convert::Base81',
dist_abstract => 'Encoding to and decoding from Base 81 strings',
dist_author => ['John M. Gamble <jgamble@cpan.org>'],
dist_version => '1.02',
dist_name => 'Convert-Base81',
requires => {
perl => '5.16.1',
'Math::Int128' => '0.22',
},
configure_requires => {
'Module::Build' => '0.4',
},
build_requires => {
'Test::More' => 0
},
license => 'perl',
create_license => 1,
create_readme => 0,
create_makefile_pl => 'traditional',
dynamic_config =>0,
meta_merge => {
keywords => [ qw(base-81 encode decode format) ],
resources => {
repository => 'git://github.com/jgamble/Convert-Base81.git',
# repository => {
# url => 'git://github.com/jgamble/Convert-Base81',
# web => 'https://github.com/jgamble/Convert-Base81',
# type => 'git',
# },
},
},
);
$build->create_build_script;