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
|
use strict;
use warnings;
use Module::Build::CipUX;
use version; our $VERSION = qv('3.4.0.11');
my $builder = Module::Build::CipUX->new(
module_name => 'CipUX',
license => 'gpl2',
dist_author => 'Christian Kuelker <christian.kuelker@cipworx.org>',
dist_version => $VERSION,
dist_abstract => 'CipUX Utility library',
# create_makefile_pl => 'traditional',
# create_readme => 1,
installdirs => 'vendor',
meta_merge => { resources => { homepage => q(http://www.cipux.org), }, },
recommends => {
'Test::Perl::Critic' => 0,
'Pod::Spell' => 0,
'Readonly::XS' => 0,
},
build_requires => {
'Test::LeakTrace' => 0,
'Test::More' => 0,
'Test::Pod' => '1.14',
'Test::Pod::Coverage' => '1.04',
'Test::Refcount' => 0,
'Module::Build::CipUX' => '0.3.0',
},
requires => {
'Array::Unique' => 0,
'Carp' => 0,
'Class::Std' => '0.0.9',
'Config::Any' => '0.18',
'Config::Tiny' => 0,
'Data::Dumper' => 0,
'Date::Manip' => 0,
'Digest::MD5' => 0,
'English' => 0,
'File::Basename' => 0,
'File::Glob' => 0,
'File::Path' => 2.06,
'Hash::Merge' => '0.11',
'Log::Log4perl' => '0.42',
'Pod::Usage' => 0,
'Readonly' => 0,
'Storable' => 0,
'Term::ReadKey' => 0,
'Unicode::String' => 0,
'version' => 0,
'YAML::Any' => 0,
},
add_to_cleanup => ['CipUX-*'],
);
$builder->create_build_script();
|