-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBuild.PL
More file actions
28 lines (26 loc) · 759 Bytes
/
Build.PL
File metadata and controls
28 lines (26 loc) · 759 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
27
28
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'SQL::Beautify',
license => 'artistic_2',
dist_author => 'Jonas Kramer <jkramer@cpan.org>',
dist_version_from => 'lib/SQL/Beautify.pm',
requires => {
'Carp' => 0,
'Getopt::Long' => 0,
'SQL::Tokenizer' => 0.19,
},
build_requires => {
'Test::More' => 0,
},
add_to_cleanup => [ 'SQL-Beautify-*' ],
create_makefile_pl => 'traditional',
script_files => ['script/sqlbeautify'],
meta_merge => {
resources => {
repository => 'https://github.com/jkramer/sql-beautify'
}
},
);
$builder->create_build_script();