-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
26 lines (24 loc) · 708 Bytes
/
Build.PL
File metadata and controls
26 lines (24 loc) · 708 Bytes
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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Authen::Simple::Twitter',
license => 'perl',
dist_author => 'Dan Moore <dan@moore.cx>',
dist_version_from => 'lib/Authen/Simple/Twitter.pm',
build_requires => {
'Test::More' => 0,
},
requires => {
'Authen::Simple::Adapter' => 0,
'Net::Twitter' => 0,
},
add_to_cleanup => [ 'Authen-Simple-Twitter-*' ],
create_makefile_pl => 'traditional',
meta_add => {
resources => {
repository => 'git://github.com/mgrdcm/authen-simple-twitter.git',
},
},
);
$builder->create_build_script();