13 lines
312 B
Perl
13 lines
312 B
Perl
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
NAME => 'pshell',
|
|
PREREQ_PM => {
|
|
'DBI' => 0,
|
|
'DBD::SQLite' => 0,
|
|
'Term::ReadLine' => 0,
|
|
'Term::ReadLine::Gnu' => 0,
|
|
'Cwd' => 0,
|
|
'File::HomeDir' => 0,
|
|
},
|
|
);
|