Tools for modeling links between files / URLs / etc.
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.

28 lines
434 B

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