-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Build.PL
84 lines (75 loc) · 3.39 KB
/
Build.PL
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use utf8;
use 5.006;
use strict;
use warnings FATAL => 'all';
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Sidef',
license => 'artistic_2',
dist_author => [
q{Daniel Șuteu (<[email protected]>)},
q{Ioana Fălcușan (<[email protected]>)},
],
dist_version_from => 'lib/Sidef.pm',
dist_abstract => 'The Sidef Programming Language',
release_status => 'stable',
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
},
sign => 1,
dynamic_config => 0,
extra_manify_args => {utf8 => 1},
meta_merge => {
resources => {
bugtracker => "https://github.com/trizen/sidef/issues",
homepage => "https://github.com/trizen/sidef",
repository => "https://github.com/trizen/sidef",
},
},
requires => {
'perl' => '5.18.0',
'utf8' => 0,
'parent' => 0,
'Memoize' => 0,
'Cwd' => 0,
'File::Spec' => 0,
'File::Path' => 0,
'File::Copy' => 0,
'File::Basename' => 0,
'List::Util' => 1.45,
'Math::MPFR' => 3.36,
'Math::MPC' => 0,
'Math::GMPq' => 0.45,
'Math::GMPz' => 0.48,
'Socket' => 0,
'Fcntl' => 0,
'Encode' => 0,
'Scalar::Util' => 0,
'Time::Piece' => 0,
'Time::HiRes' => 0,
'Getopt::Std' => 0,
'Term::ReadLine' => 0,
'Math::Prime::Util::GMP' => 0.52, # used in many Number methods
'Algorithm::Combinatorics' => 0, # used in some Array methods
'Algorithm::Loops' => 0, # used in Array#cartesian() and Number#sqrtmod_all()
'Data::Dump' => 0, # used for `sidef -D`
'Data::Dump::Filtered' => 0, # used in Block#ffork()
},
recommends => {
'forks' => 0, # better support for threads in Block.thread()
'File::Find' => 0, # `sidef -c`
'Digest::MD5' => 0, # File.md5(), Str.md5()
'Digest::SHA' => 0, # File.sha*(), Str.sha*()
'MIME::Base64' => 0, # Str.encode_base64(), Str.decode_base64()
'Math::Prime::Util' => 0.73, # used in some Number methods, if available
'Term::ReadLine::Gnu' => 0, # better STDIN support (+history)
'Text::Balanced' => 0, # Str.extract_bracketed(), Str.extract_delimited()
'Text::ParseWords' => 0, # Str.parse_quotewords()
},
add_to_cleanup => ['Sidef-*'],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();