Makefile.PL 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. use strict;
  2. use warnings;
  3. use ExtUtils::MakeMaker;
  4. WriteMakefile(
  5. VERSION => '0.01',
  6. META_MERGE => {
  7. "meta-spec" => { version => 2 },
  8. resources => {
  9. repository => {
  10. type => 'git',
  11. url => 'git@github.com:Troglodyne-Internet-Widgets/tCMS.git',
  12. web => 'https://github.com/Troglodyne-Internet-Widgets/tCMS',
  13. },
  14. },
  15. },
  16. PREREQ_PM => {
  17. 'CGI::Cookie' => '0',
  18. 'Capture::Tiny' => '0',
  19. 'Carp' => '0',
  20. 'Config::Simple' => '0',
  21. 'DBD::SQLite' => '0',
  22. 'DBI' => '0',
  23. 'Date::Format' => '0',
  24. 'DateTime::Format::HTTP' => '0',
  25. 'Digest::SHA' => '0',
  26. 'Errno' => '0',
  27. 'File::Basename' => '0',
  28. 'File::Copy' => '0',
  29. 'File::Slurper' => '0',
  30. 'File::Touch' => '0',
  31. 'HTTP::Body' => '0',
  32. 'JSON::MaybeXS' => '0',
  33. 'List::Util' => '0',
  34. 'Mojo::File' => '0',
  35. 'POSIX' => '0',
  36. 'Pod::Html' => '0',
  37. 'Starman' => '0',
  38. 'Text::Xslate' => '0',
  39. 'URL::Encode' => '0',
  40. 'UUID::Tiny' => '0',
  41. 'WWW::Sitemap::XML' => '0',
  42. 'WWW::SitemapIndex::XML' => '0',
  43. },
  44. test => {TESTS => 't/*.t'}
  45. );