PageRenderTime 52ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/modules/App-XML-DocBook-Docmake/Build.PL

https://bitbucket.org/shlomif/docmake
Perl | 61 lines | 57 code | 4 blank | 0 comment | 0 complexity | 49a30829c4100a14d1baff50f1f5d30f 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 => 'App::XML::DocBook::Builder',
  8. license => 'mit',
  9. dist_author => 'Shlomi Fish <shlomif@cpan.org>',
  10. dist_version_from => 'lib/App/XML/DocBook/Builder.pm',
  11. configure_requires =>
  12. {
  13. 'Module::Build' => 0.36,
  14. },
  15. build_requires => {
  16. 'Test::More' => 0,
  17. 'Test::Trap' => 0,
  18. },
  19. requires => {
  20. 'Class::Accessor' => 0,
  21. 'File::Path' => 0,
  22. 'File::Spec' => 0,
  23. 'Getopt::Long' => '2.37',
  24. 'Pod::Usage' => 0,
  25. 'parent' => 0,
  26. 'perl' => '5.008',
  27. 'strict' => 0,
  28. 'warnings' => 0,
  29. },
  30. add_to_cleanup => [ 'App::XML::DocBook::Builder-*' ],
  31. script_files => [ "script/docmake" ],
  32. meta_merge =>
  33. {
  34. resources =>
  35. {
  36. repository => "http://bitbucket.org/shlomif/docmake",
  37. homepage => "http://www.shlomifish.org/open-source/projects/docmake/",
  38. },
  39. keywords =>
  40. [
  41. "automation",
  42. "convert",
  43. "docbook",
  44. "html",
  45. "pdf",
  46. "postscript",
  47. "script",
  48. "scripts",
  49. "sgml",
  50. "xhtml",
  51. "xml",
  52. "xsl-fo",
  53. "xslt",
  54. ],
  55. },
  56. );
  57. $builder->create_build_script();