forked from moritz/mowyw
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
37 lines (35 loc) · 1.01 KB
/
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
31
32
33
34
35
36
37
use strict;
use warnings;
use Module::Build;
require 5.008001;
my $build = Module::Build->new(
create_readme => 0,
create_makefile_pl => 'traditional',
license => 'artistic_2',
module_name => 'App::Mowyw',
dist_author => 'Moritz Lenz',
dist_abstract => 'Macro processor for creating static HTML pages',
dist_version_from => 'lib/App/Mowyw.pm',
requires => {
'perl' => '5.8.1',
'Carp' => 0,
'Data::Dumper' => 0,
'Scalar::Util' => 0,
'File::Temp' => 0,
'File::Compare' => 0,
'Storable' => 0,
'Exporter' => 0,
'Config::File' => 0,
},
recommends => {
'DBI' => 0,
'Text::VimColor' => 0,
'XML::Simple' => 0,
},
script_files => [ qw(
script/mowyw
)],
sign => 0,
);
$build->create_build_script;
# vim: sw=4 ts=4 expandtab