Makefile.PL 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. use strict;
  2. use warnings;
  3. use ExtUtils::MakeMaker;
  4. WriteMakefile(
  5. VERSION => '0.01',
  6. PREREQ_PM => {
  7. 'CGI::Cookie' => '0',
  8. 'Capture::Tiny' => '0',
  9. 'Carp' => '0',
  10. 'Config::Simple' => '0',
  11. 'DBD::SQLite' => '0',
  12. 'DBI' => '0',
  13. 'Date::Format' => '0',
  14. 'DateTime::Format::HTTP' => '0',
  15. 'Digest::SHA' => '0',
  16. 'Errno' => '0',
  17. 'File::Basename' => '0',
  18. 'File::Copy' => '0',
  19. 'File::Slurper' => '0',
  20. 'File::Touch' => '0',
  21. 'HTTP::Body' => '0',
  22. 'JSON::MaybeXS' => '0',
  23. 'List::Util' => '0',
  24. 'Mojo::File' => '0',
  25. 'POSIX' => '0',
  26. 'Plack::Mime' => '0',
  27. 'Pod::Html' => '0',
  28. 'Starman' => '0',
  29. 'Text::Xslate' => '0',
  30. 'URL::Encode' => '0',
  31. 'UUID::Tiny' => '0',
  32. 'WWW::Sitemap::XML' => '0',
  33. 'WWW::SitemapIndex::XML' => '0',
  34. },
  35. test => {TESTS => 't/*.t'}
  36. );