From 934fd7f7c56cb22173d32dcd7ffb1389cddd2011 Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 3 Sep 2022 17:13:08 -0400 Subject: initial commit --- Makefile.PL | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..f620e35 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,46 @@ +use 5.010; +use strict; +use warnings; +use ExtUtils::MakeMaker; + +my %WriteMakefileArgs = ( + NAME => 'webx_type', + AUTHOR => q{Jake Thoughts }, + VERSION_FROM => 'lib/webx_type.pm', + ABSTRACT_FROM => 'lib/webx_type.pm', + LICENSE => 'gpl_3', + MIN_PERL_VERSION => '5.010', + CONFIGURE_REQUIRES => { + 'ExtUtils::MakeMaker' => '0', + }, + TEST_REQUIRES => { + 'Test::More' => '0', + }, + PREREQ_PM => { + #'ABC' => '1.6', + #'Foo::Bar::Module' => '5.0401', + }, + EXE_FILES => ['bin/webx_type'], + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'webx_type-*' }, +); + +# Compatibility with old versions of ExtUtils::MakeMaker +unless (eval { ExtUtils::MakeMaker->VERSION('6.64'); 1 }) { + my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES} || {}; + @{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires; +} + +unless (eval { ExtUtils::MakeMaker->VERSION('6.55_03'); 1 }) { + my $build_requires = delete $WriteMakefileArgs{BUILD_REQUIRES} || {}; + @{$WriteMakefileArgs{PREREQ_PM}}{keys %$build_requires} = values %$build_requires; +} + +delete $WriteMakefileArgs{CONFIGURE_REQUIRES} + unless eval { ExtUtils::MakeMaker->VERSION('6.52'); 1 }; +delete $WriteMakefileArgs{MIN_PERL_VERSION} + unless eval { ExtUtils::MakeMaker->VERSION('6.48'); 1 }; +delete $WriteMakefileArgs{LICENSE} + unless eval { ExtUtils::MakeMaker->VERSION('6.31'); 1 }; + +WriteMakefile(%WriteMakefileArgs); -- cgit v1.2.3