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.

37 lines
920 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.900',
  20. 'perl' => '5.10.0',
  21. },
  22. resources => {
  23. repository => {
  24. url => 'git://code.p1k3.com/gitea/brennen/wrt.git',
  25. web => 'https://code.p1k3.com/gitea/brennen/wrt',
  26. type => 'git',
  27. },
  28. }
  29. );
  30. $build->create_build_script;