use
5.010001;
my
%WriteMakefileArgs
= (
"ABSTRACT"
=>
"Utilities related to SQLite"
,
"AUTHOR"
=>
"perlancar <perlancar\@cpan.org>"
,
"CONFIGURE_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0
},
"DISTNAME"
=>
"App-SQLiteUtils"
,
"EXE_FILES"
=> [
"script/csv2sqlite"
,
"script/import-csv-to-sqlite"
,
"script/list-sqlite-columns"
,
"script/list-sqlite-tables"
],
"LICENSE"
=>
"perl"
,
"MIN_PERL_VERSION"
=>
"5.010001"
,
"NAME"
=>
"App::SQLiteUtils"
,
"PREREQ_PM"
=> {
"DBI"
=> 0,
"DBIx::Util::Schema"
=> 0,
"Data::Sah::Compiler::perl::TH::str"
=>
"0.914"
,
"Data::Sah::Filter::perl::Path::expand_tilde_when_on_unix"
=> 0,
"Data::Sah::Filter::perl::Path::strip_slashes_when_on_unix"
=> 0,
"Expect"
=> 0,
"File::Temp"
=>
"0.2307"
,
"Log::ger"
=>
"0.038"
,
"Perinci::CmdLine::Any"
=>
"0.154"
,
"Perinci::CmdLine::Lite"
=>
"1.924"
,
"Perinci::Sub::DepChecker"
=> 0,
"Sah::Schema::filename"
=> 0,
"String::ShellQuote"
=> 0,
"strict"
=> 0,
"warnings"
=> 0
},
"TEST_REQUIRES"
=> {
"File::Spec"
=> 0,
"IO::Handle"
=> 0,
"IPC::Open3"
=> 0,
"Test::More"
=> 0
},
"VERSION"
=>
"0.006"
,
"test"
=> {
"TESTS"
=>
"t/*.t"
}
);
my
%FallbackPrereqs
= (
"DBI"
=> 0,
"DBIx::Util::Schema"
=> 0,
"Data::Sah::Compiler::perl::TH::str"
=>
"0.914"
,
"Data::Sah::Filter::perl::Path::expand_tilde_when_on_unix"
=> 0,
"Data::Sah::Filter::perl::Path::strip_slashes_when_on_unix"
=> 0,
"Expect"
=> 0,
"File::Spec"
=> 0,
"File::Temp"
=>
"0.2307"
,
"IO::Handle"
=> 0,
"IPC::Open3"
=> 0,
"Log::ger"
=>
"0.038"
,
"Perinci::CmdLine::Any"
=>
"0.154"
,
"Perinci::CmdLine::Lite"
=>
"1.924"
,
"Perinci::Sub::DepChecker"
=> 0,
"Sah::Schema::filename"
=> 0,
"String::ShellQuote"
=> 0,
"Test::More"
=> 0,
"strict"
=> 0,
"warnings"
=> 0
);
unless
(
eval
{ ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete
$WriteMakefileArgs
{TEST_REQUIRES};
delete
$WriteMakefileArgs
{BUILD_REQUIRES};
$WriteMakefileArgs
{PREREQ_PM} = \
%FallbackPrereqs
;
}
delete
$WriteMakefileArgs
{CONFIGURE_REQUIRES}
unless
eval
{ ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(
%WriteMakefileArgs
);