-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
30 lines (28 loc) · 878 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
25
26
27
28
29
30
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Emacs::Rep',
license => 'perl',
dist_author => q{Joseph Brenner <[email protected]>},
dist_version_from => 'lib/Emacs/Rep.pm',
build_requires => {
'Data::Dumper::Perltidy' => 0,
'Test::More' => 0,
'FindBin' => 0,
'lib' => 0,
'Test::Trap' => 0,
},
requires => {
'PPI' => 0,
'strict' => 0,
'warnings' => 0,
'Carp' => 0,
'Data::Dumper' => 0,
'Exporter' => 0,
},
add_to_cleanup => [ 'Emacs-Rep-*' ],
create_makefile_pl => 'traditional',
script_files => ['script/rep.pl'],
);
$builder->create_build_script();