]>
Commit | Line | Data |
---|---|---|
1 | use 5.014000; | |
2 | use ExtUtils::MakeMaker; | |
3 | ||
4 | WriteMakefile( | |
5 | NAME => 'Gruntmaster::Page', | |
6 | VERSION_FROM => 'lib/Gruntmaster/Page.pm', | |
7 | EXE_FILES => [ qw/gruntmaster-genarticle gruntmaster-genpage gruntmaster-genallpages gruntmaster-paged gruntmaster-contest gruntmaster-problem gruntmaster-job/ ], | |
8 | ABSTRACT_FROM => 'lib/Gruntmaster/Page.pm', | |
9 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', | |
10 | MIN_PERL_VERSION => '5.14.0', | |
11 | LICENSE => 'perl', | |
12 | SIGN => 1, | |
13 | PREREQ_PM => { | |
14 | qw/Fcntl 0 | |
15 | File::Basename 0 | |
16 | IO::File 0 | |
17 | POSIX 0 | |
18 | ||
19 | File::Slurp 0 | |
20 | HTML::Template::Compiled 0 | |
21 | IO::Compress::Gzip 0 | |
22 | YAML::Any 0/, | |
23 | }, | |
24 | META_MERGE => { | |
25 | dynamic_config => 0, | |
26 | } | |
27 | ); |