Almost-minimal filesystem based blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
983 B

  1. use Module::Build;
  2. my $build = Module::Build->new(
  3. module_name => 'App::WRT',
  4. license => 'gpl',
  5. requires => {
  6. 'Data::Dumper' => 0,
  7. 'Exporter' => 0,
  8. 'File::Basename' => 0,
  9. 'File::Copy' => 0,
  10. 'File::Spec' => 0,
  11. 'Getopt::Long' => 0,
  12. 'HTML::Entities' => 0,
  13. 'Image::Size' => 0,
  14. 'JSON' => 0,
  15. 'POSIX' => 0,
  16. 'Text::Markdown::Discount' => '0.11',
  17. 'Text::Textile' => 0,
  18. 'Time::HiRes' => 0,
  19. 'XML::Atom::SimpleFeed' => '0.8',
  20. 'XML::Feed' => 0,
  21. 'perl' => '5.10.0',
  22. },
  23. recommends => {
  24. 'CGI::Fast' => 0,
  25. },
  26. resources => {
  27. repository => {
  28. url => 'git://github.com/brennen/wrt.git',
  29. web => 'https://github.com/brennen/wrt',
  30. type => 'git',
  31. },
  32. }
  33. );
  34. $build->create_build_script;