Makefile.PL 762 B

12345678910111213141516171819202122232425262728
  1. use ExtUtils::MakeMaker;
  2. WriteMakefile(
  3. NAME => 'Test::Mapper',
  4. AUTHOR => 'Troglodyne Internet Widgets',
  5. VERSION_FROM => 'lib/Test/Mapper.pm',
  6. ABSTRACT_FROM => 'lib/Test/Mapper.pm',
  7. LICENSE => 'artistic_2',
  8. MIN_PERL_VERSION => '5.010',
  9. PREREQ_PM => {
  10. 'DBI' => 0,
  11. 'DBD::SQLite' => 0,
  12. 'File::Touch' => 0,
  13. },
  14. TEST_REQUIRES => {
  15. 'Test::More' => 0,
  16. 'File::Temp' => 0,
  17. },
  18. META_MERGE => {
  19. 'meta-spec' => { version => 2 },
  20. resources => {
  21. repository => {
  22. type => 'git',
  23. url => 'https://git.troglodyne.net/Troglodyne/Test-Mapper.git',
  24. },
  25. },
  26. },
  27. );