12 lines
272 B
Perl
12 lines
272 B
Perl
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
NAME => 'pshell',
|
|
VERSION_FROM => 'lib/History/SQLite.pm',
|
|
PREREQ_PM => {
|
|
'DBI' => 0,
|
|
'DBD::SQLite' => 0,
|
|
'Term::ReadLine' => 0,
|
|
'Cwd' => 0,
|
|
},
|
|
);
|