1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'IPC::Run3',
VERSION_FROM => 'lib/IPC/Run3.pm',
ABSTRACT_FROM => 'lib/IPC/Run3.pm',
AUTHOR => 'Barrie Slaymaker <barries@slaysys.com>',
(eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'open_source') : ()),
EXE_FILES => [],
PREREQ_PM => {
'Test::More' => '0.31',
'Time::HiRes' => 0,
($^O =~ /Win32/ ? (Win32 => 0, 'Win32::ShellQuote' => 0) : ())
},
META_MERGE => {
resources => {
repository => 'http://github.com/rjbs/IPC-Run3/',
bugtracker => { web => 'https://github.com/rjbs/IPC-Run3/issues' },
},
no_index => {
dir => [ qw(lib/IPC/Run3) ],
file => [ qw(bin/run3profpp) ],
},
},
clean => { FILES => [ "t/test.txt", "t/utf8.txt" ] },
);
|