Makefile.PL 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. 'HTML::SocialMeta' => '0',
  32. 'HTTP::Body' => '0',
  33. 'IO::String' => '0',
  34. 'JSON::MaybeXS' => '0',
  35. 'List::Util' => '0',
  36. 'Mojo::File' => '0',
  37. 'POSIX' => '0',
  38. 'Pod::Html' => '0',
  39. 'Starman' => '0',
  40. 'Text::Xslate' => '0',
  41. 'URL::Encode' => '0',
  42. 'UUID::Tiny' => '0',
  43. 'WWW::Sitemap::XML' => '0',
  44. 'WWW::SitemapIndex::XML' => '0',
  45. },
  46. test => {TESTS => 't/*.t'}
  47. );