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.

27 lines
458 B

  1. use Module::Build;
  2. my $build = Module::Build->new(
  3. module_name => 'App::CommandLog',
  4. license => 'gpl',
  5. requires => {
  6. 'Data::Dumper' => 0,
  7. 'File::Spec' => 0,
  8. 'Getopt::Long' => 0,
  9. 'POSIX' => 0,
  10. 'Cwd' => 0,
  11. 'DBI' => 0,
  12. 'DBD::SQLite' => 0,
  13. 'SQL::Abstract' => 0,
  14. 'Sys::Hostname' => 0,
  15. 'perl' => '5.10.0',
  16. },
  17. recommends => {
  18. },
  19. );
  20. $build->create_build_script;