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 29 30 31 32 33 34 35 36 37 38 39 40
|
#!/usr/bin/perl -w
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'ExtUtils::CppGuess',
VERSION_FROM => 'lib/ExtUtils/CppGuess.pm',
LICENSE => 'perl',
PREREQ_PM => {
'Capture::Tiny' => '0',
'File::Basename' => '0',
'File::Spec' => '0',
'File::Temp' => '0',
'ExtUtils::ParseXS' => '3.35',
},
TEST_REQUIRES => {
'Capture::Tiny' => '0',
'Module::Build' => '0',
'ExtUtils::CBuilder' => '0.280231',
'ExtUtils::MakeMaker' => '0',
'Test::More' => '0.88',
'ExtUtils::Manifest' => '0',
'Fatal' => '0',
'Cwd' => '0',
},
clean => { FILES => 't/module_build t/makemaker' },
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
bugtracker => { web => 'https://github.com/tsee/extutils-cppguess/issues' },
repository => {
type => 'git',
url => 'git://github.com/tsee/extutils-cppguess',
web => 'https://github.com/tsee/extutils-cppguess',
},
},
},
);
|