Makefile.PL 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. BUILD_REQUIRES => {
  17. 'FindBin' => '0',
  18. 'Test::More' => '0',
  19. 'Test::MockModule' => '0',
  20. 'Test::Deep' => '0',
  21. 'Test::Fatal' => '0',
  22. 'Test::MockFile' => '0',
  23. },
  24. PREREQ_PM => {
  25. 'CGI::Cookie' => '0',
  26. 'Capture::Tiny' => '0',
  27. 'Carp' => '0',
  28. 'Config::Simple' => '0',
  29. 'DBD::SQLite' => '0',
  30. 'DBI' => '0',
  31. 'Date::Format' => '0',
  32. 'DateTime::Format::HTTP' => '0',
  33. 'Digest::SHA' => '0',
  34. 'Errno' => '0',
  35. 'File::Basename' => '0',
  36. 'File::Copy' => '0',
  37. 'File::Slurper' => '0',
  38. 'File::Touch' => '0',
  39. 'HTML::SocialMeta' => '0',
  40. 'HTTP::Body' => '0',
  41. 'IO::String' => '0',
  42. 'JSON::MaybeXS' => '0',
  43. 'List::Util' => '0',
  44. 'Mojo::File' => '0',
  45. 'POSIX' => '0',
  46. 'Pod::Html' => '0',
  47. 'Starman' => '0',
  48. 'Text::Xslate' => '0',
  49. 'URL::Encode' => '0',
  50. 'UUID::Tiny' => '0',
  51. 'WWW::Sitemap::XML' => '0',
  52. 'WWW::SitemapIndex::XML' => '0',
  53. 'CSS::Minifier::XS' => '0',
  54. 'JavaScript::Minifier::XS' => '0',
  55. 'Digest::SHA' => '0',
  56. 'Path::Tiny' => '0',
  57. 'IO::Compress::Brotli' => '0',
  58. 'IO::Compress::Gzip' => '0',
  59. 'IO::Compress::Deflate' => '0',
  60. 'HTTP::Parser::XS' => '0',
  61. },
  62. test => {TESTS => 't/*.t'}
  63. );