PageRenderTime 44ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/Module-Format/Module-Format/Build.PL

https://bitbucket.org/shlomif/web-cpan
Perl | 61 lines | 57 code | 4 blank | 0 comment | 0 complexity | 028d110b756fade6c720c412393ae5b5 MD5 | raw file
  1. use strict;
  2. use warnings;
  3. use lib "./inc";
  4. use Test::Run::Builder;
  5. my $builder = Test::Run::Builder->new(
  6. module_name => 'Module::Format',
  7. license => 'mit',
  8. dist_author => q{Shlomi Fish <shlomif@cpan.org>},
  9. dist_version_from => 'lib/Module/Format.pm',
  10. requires =>
  11. {
  12. 'Getopt::Long' => '2.36',
  13. 'Pod::Usage' => 0,
  14. 'strict' => 0,
  15. 'warnings' => 0,
  16. },
  17. build_requires =>
  18. {
  19. 'Test::More' => 0,
  20. 'vars' => 0,
  21. },
  22. configure_requires =>
  23. {
  24. 'Module::Build' => 0,
  25. },
  26. add_to_cleanup => [ 'Module-Format-*' ],
  27. create_makefile_pl => 'traditional',
  28. script_files => ["script/perlmf"],
  29. meta_merge =>
  30. {
  31. resources =>
  32. {
  33. repository => "http://bitbucket.org/shlomif/web-cpan",
  34. homepage => "http://www.shlomifish.org/open-source/projects/Module-Format/",
  35. },
  36. keywords =>
  37. [
  38. "modules",
  39. "formats",
  40. "cpan",
  41. "installation",
  42. "rpm",
  43. "debs",
  44. "debian",
  45. "mandriva",
  46. "fedora",
  47. "install",
  48. "convert",
  49. "apt-get",
  50. "urpmi",
  51. "yum",
  52. "conversion",
  53. "perl",
  54. ],
  55. },
  56. );
  57. $builder->create_build_script();