This repository was archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
41 lines (38 loc) · 1.41 KB
/
Copy pathBuild.PL
File metadata and controls
41 lines (38 loc) · 1.41 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
35
36
37
38
39
40
41
#!/usr/bin/perl
use utf8;
use 5.006;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Math::BigNum',
license => 'artistic_2',
dist_author => q{Daniel Șuteu <trizenx@gmail.com>},
dist_version_from => 'lib/Math/BigNum.pm',
release_status => 'stable',
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
},
meta_merge => {
resources => {
bugtracker => "https://github.com/trizen/Math-BigNum/issues",
homepage => "https://github.com/trizen/Math-BigNum",
repository => "https://github.com/trizen/Math-BigNum",
},
},
requires => {
'perl' => '5.14.0',
'Carp' => 0,
'POSIX' => 0,
'Math::MPFR' => 3.29,
'Math::GMPq' => 0.41,
'Math::GMPz' => 0.39,
'Class::Multimethods' => 0,
},
add_to_cleanup => ['Math-BigNum-*'],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();