PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/XML-Grammar-Fortune-Synd/module/Build.PL

https://bitbucket.org/shlomif/fortune-xml
Perl | 53 lines | 49 code | 4 blank | 0 comment | 0 complexity | f203e3a09c26d71046056ddd1da0c102 MD5 | raw file
  1. use strict;
  2. use warnings;
  3. use File::Spec;
  4. use lib File::Spec->catdir(File::Spec->curdir(), "inc");
  5. use Test::Run::Builder;
  6. my $builder = Test::Run::Builder->new(
  7. module_name => 'XML::Grammar::Fortune::Synd',
  8. license => 'mit',
  9. dist_author => 'Shlomi Fish <shlomif@cpan.org>',
  10. dist_version_from => 'lib/XML/Grammar/Fortune/Synd.pm',
  11. configure_requires =>
  12. {
  13. 'Module::Build' => '0.36',
  14. },
  15. requires =>
  16. {
  17. 'base' => 0,
  18. 'Class::Accessor' => 0,
  19. 'DateTime::Format::W3CDTF' => 0,
  20. 'Exporter' => 0,
  21. 'File::Spec' => 0,
  22. 'Getopt::Long' => 0,
  23. 'Heap::Binary' => 0,
  24. 'Heap::Elem::Ref' => 0,
  25. 'List::Util' => 0,
  26. 'perl' => '5.008',
  27. 'strict' => 0,
  28. 'vars' => 0,
  29. 'warnings' => 0,
  30. 'XML::Feed' => 0,
  31. 'XML::Grammar::Fortune' => '0.0506',
  32. 'XML::RSS' => "1.46",
  33. 'YAML::XS' => 0,
  34. },
  35. build_requires => {
  36. 'autodie' => 0,
  37. 'Test::More' => 0,
  38. },
  39. meta_merge =>
  40. {
  41. resources =>
  42. {
  43. repository => "https://bitbucket.org/shlomif/fortune-xml",
  44. },
  45. },
  46. add_to_cleanup => [ 'XML-Grammar-Fortune-Synd-*' ],
  47. create_makefile_pl => 'traditional',
  48. );
  49. $builder->create_build_script();