use 5.024001;
|
|
use ExtUtils::MakeMaker;
|
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|
# the contents of the Makefile that is written.
|
|
WriteMakefile(
|
|
NAME => 'File::FormatIdentification::Pronom',
|
|
VERSION_FROM => 'lib/File/FormatIdentification/Pronom.pm', # finds $VERSION, requires EU::MM from perl >= 5.5
|
|
PREREQ_PM => {
|
|
"XML::LibXML" => 0,
|
|
"Carp" => 0,
|
|
"List::Util" => 0,
|
|
"Scalar::Util" => 0,
|
|
"YAML::XS" => 0,
|
|
"Moose" => 0,
|
|
"String::LCSS" => 0,
|
|
"Carp" => 0,
|
|
"Regexp::Assemble" => 0,
|
|
"Regexp::Optimizer" => 0,
|
|
|
|
},
|
|
ABSTRACT_FROM => 'lib/File/FormatIdentification/Pronom.pm', # retrieve abstract from module
|
|
AUTHOR => 'Andreas Romeyke <art1@andreas-romeyke.de>',
|
|
LICENSE => 'perl_5',
|
|
test => {
|
|
"TESTS" => "t/File/FormatIdentification/*.t"
|
|
},
|
|
EXE_FILES => [
|
|
"bin/pronom2wxhexeditor.pl",
|
|
"bin/pronom_statistics.pl"
|
|
],
|
|
);
|