PageRenderTime 53ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/abc-path/Games-ABC_Path-Generator/Build.PL

https://bitbucket.org/shlomif/abc-path
Perl | 68 lines | 62 code | 5 blank | 1 comment | 0 complexity | 6fc150177df776e7e26d3092b574148c MD5 | raw file
  1. use 5.006;
  2. use strict;
  3. use warnings;
  4. use lib './inc';
  5. use Test::Run::Builder;
  6. my $builder = Test::Run::Builder->new(
  7. module_name => 'Games::ABC_Path::Generator',
  8. license => 'mit',
  9. # dist_abstract => q{A generator for ABC Path puzzle games},
  10. dist_author => q{Shlomi Fish <shlomif@cpan.org>},
  11. dist_version_from => 'lib/Games/ABC_Path/Generator.pm',
  12. configure_requires => {
  13. 'Module::Build' => '0.36',
  14. },
  15. build_requires => {
  16. 'Test::Differences' => 0,
  17. 'Test::More' => 0,
  18. },
  19. requires => {
  20. 'Carp' => 0,
  21. 'Class::XSAccessor' => 0,
  22. 'Exporter' => 0,
  23. 'Games::ABC_Path::Solver::Base' => '0.3.0',
  24. 'Games::ABC_Path::Solver::Constants' => '0.3.0',
  25. 'Games::ABC_Path::Solver::Coord' => '0.3.0',
  26. 'Games::ABC_Path::Solver::Board' => '0.3.0',
  27. 'Getopt::Long' => '2.36',
  28. 'integer' => 0,
  29. 'perl' => 5.006,
  30. 'strict' => 0,
  31. 'warnings' => 0,
  32. },
  33. add_to_cleanup => [ 'Games-ABC_Path-Generator-*' ],
  34. create_makefile_pl => 'traditional',
  35. script_files => [
  36. "scripts/abc-path-gen",
  37. ],
  38. meta_merge =>
  39. {
  40. resources =>
  41. {
  42. repository => "http://bitbucket.org/shlomif/abc-path",
  43. homepage => "http://www.shlomifish.org/open-source/projects/japanese-puzzle-games/abc-path/",
  44. },
  45. keywords =>
  46. [
  47. "abc",
  48. "game",
  49. "games",
  50. "generate",
  51. "generator",
  52. "grid",
  53. "letters",
  54. "path",
  55. "puzzle",
  56. "puzzles",
  57. "riddle",
  58. "riddles",
  59. "table",
  60. ],
  61. },
  62. );
  63. $builder->create_build_script();