webperl/Makefile.PL

27 lines
692 B
Makefile
Raw Normal View History

2020-02-14 15:47:20 +00:00
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Webperl',
AUTHOR => q{Chris <chris@starforge.co.uk>},
VERSION_FROM => 'lib/Webperl.pm',
ABSTRACT_FROM => 'lib/Webperl.pm',
LICENSE => 'GPL v3',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
#'ABC' => 1.6,
#'Foo::Bar::Module' => 5.0401,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Webperl*' },
);