Grep-Query
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use strict;
use warnings;
use 5.010;
use ExtUtils::MakeMaker;
my $IS_WIN32 = $^O eq 'MSWin32';
my $configure_requires =
{
'ExtUtils::MakeMaker' => '7.12',
};
my $test_requires =
{
'Test::More' => 0, # initial dev used: 1.001003
'Test::Differences' => 0, # initial dev used: 0.62
'Test::Exception' => 0, # initial dev used: 0.32
};
my $eumm_understands_meta_merge = $ExtUtils::MakeMaker::VERSION ge '6.46';
my $eumm_understands_conf_and_test_requires_properly = $ExtUtils::MakeMaker::VERSION ge '7.12';
WriteMakefile(
NAME => 'Grep::Query',
AUTHOR => q{Kenneth Olwing <knth@cpan.org>},
VERSION_FROM => 'lib/Grep/Query.pm',
ABSTRACT_FROM => 'lib/Grep/Query.pm',
LICENSE => 'artistic_2',
EXE_FILES => [ 'script/qgrep' ],
# initial dev was made using: ActiveState: This is perl 5, version 20, subversion 1 (v5.20.1) built for MSWin32-x86-multi-thread-64int
# we use named capture groups...
#
MIN_PERL_VERSION => 5.010,
$eumm_understands_meta_merge
? (
META_MERGE =>
{
'meta-spec' =>
{
version => 2,
},
resources =>
{
repository =>
{
type => 'git',
url => 'https://github.com/kenneth-olwing/Grep-Query.git',
web => 'https://github.com/kenneth-olwing/Grep-Query'
}
}
}
)
: (),
$eumm_understands_conf_and_test_requires_properly
? ( CONFIGURE_REQUIRES => $configure_requires, TEST_REQUIRES => $test_requires )
: (),
PREREQ_PM =>
{
$eumm_understands_conf_and_test_requires_properly
? ()
: ( %$configure_requires, %$test_requires ),
'Parse::RecDescent' => 0, # initial dev used: 1.967013
'IO::Scalar' => 0, # initial dev used: 2.111
'Digest::MD5' => 0,
'Data::DPath' => 0,
},
dist =>
{
$IS_WIN32 ? (TARFLAGS => '-cvf') : (),
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
DIST_DEFAULT => 'test xtest tardist'
},
clean => { FILES => 'Grep-Query-* *.tmp' },
test => { RECURSIVE_TEST_FILES => 1 },
);
( run in 0.892 second using v1.01-cache-2.11-cpan-39bf76dae61 )