Command-line history logging utilities
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
380 B

use Module::Build;
my $build = Module::Build->new(
module_name => 'App::CommandLog',
license => 'gpl',
requires => {
'Getopt::Long' => 0,
'POSIX' => 0,
'Cwd' => 0,
'DBI' => 0,
'DBD::SQLite' => 0,
'Sys::Hostname' => 0,
'perl' => '5.10.0',
},
recommends => {
},
);
$build->create_build_script;