Module-Install-CustomInstallationPath
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use lib '.';
use inc::Module::Install;
all_from('lib/Module/Install/CustomInstallationPath.pm');
auto_set_bugtracker;
githubmeta;
# Perl 5.6 doesn't work with URI::Escape. We get an error about Exporter not exporting "import"
perl_version '5.008';
configure_requires(
# Module::Install::Bugtracker needs this
'URI::Escape' => 0,
);
requires(
'Module::Install' => 0,
'File::HomeDir' => 0,
);
test_requires(
'Test::Compile' => 0,
'Test::More' => 0,
);
license 'gpl2';
use_standard_tests;
auto_license(holder => 'David Coppit');
no_index 'directory' => 'private-lib';
enable_verbose_cpan_testing();
realclean_files('inc');
WriteAll;
# ---- Workaround for broken module ----
# https://rt.cpan.org/Ticket/Display.html?id=125772
{
package Module::Install::StandardTests;
sub write_standard_test_compile {
my $self = shift;
$self->write_test_file('000_standard__compile.t', q/
BEGIN {
if ($^O eq 'MSWin32') {
require Test::More;
Test::More->import(skip_all =>
"Test::Compile doesn't work properly on Windows");
} else {
require Test::More;
Test::More->import();
eval "use Test::Compile";
Test::More->builder->BAIL_OUT(
"Test::Compile required for testing compilation") if $@;
all_pm_files_ok();
}
}
/);
}
}
( run in 0.936 second using v1.01-cache-2.11-cpan-39bf76dae61 )