0.15_01 final changes (includes final patch, works with normal and patched perls)
[gitmo/Class-C3.git] / Build.PL
CommitLineData
6262b4cf 1use Module::Build;
2
3use strict;
4
5my $build = Module::Build->new(
6 module_name => 'Class::C3',
7 license => 'perl',
8 requires => {
620971c3 9 'Algorithm::C3' => 0.06,
e86d671c 10 'Scalar::Util' => 1.10,
11 },
12 recommends => {
663e8dcc 13# 'Class::C3::XS' => 0.01,
6262b4cf 14 },
6262b4cf 15 build_requires => {
16 'Test::More' => '0.47',
6262b4cf 17 },
18 create_makefile_pl => 'traditional',
19 recursive_test_files => 1,
20 add_to_cleanup => [
21 'META.yml', '*.bak', '*.gz', 'Makefile.PL',
22 ],
23);
24
25$build->create_build_script;
26