-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
24 lines (22 loc) · 850 Bytes
/
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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Bot::BasicBot::Pluggable::Module::RSS',
license => 'perl',
dist_author => 'Mario Domgoergen <dom@math.uni-bonn.de>',
dist_version_from => 'lib/Bot/BasicBot/Pluggable/Module/RSS.pm',
requires => {
'POE' => 0,
'POE::Component::RSSAggregator' => 0,
'Bot::BasicBot::Pluggable' => 0,
'File::Spec' => 0,
'Digest::MD5' => 0,
'String::Format' => 0,
},
build_requires => { 'Test::More' => 0, },
add_to_cleanup => ['Bot-BasicBot-Pluggable-Module-RSS-*'],
create_makefile_pl => 'traditional',
create_readme => 1,
);
$builder->create_build_script();