summaryrefslogtreecommitdiff
path: root/Build.PL
blob: c5f6fcde39bf8544f4294396f24b943eebee07e7 (plain)
  1. use strict;
  2. use warnings;
  3. use Module::Build;
  4. my $build = Module::Build->new (
  5. dist_name => 'LedgerSMB',
  6. dist_version => '1.2.99',
  7. license => 'GPL',
  8. requires => {
  9. 'perl' => '>= 5.8.1',
  10. 'Data::Dumper' => 0,
  11. 'Locale::Maketext' => 0,
  12. 'Locale::Maketext::Lexicon' => '>= 0.56',
  13. 'MIME::Base64' => 0,
  14. 'Digest::MD5' => 0,
  15. 'HTML::Entities' => 0,
  16. 'DBI' => '>= 0.48',
  17. 'DBD::Pg' => 0,
  18. 'Math::BigFloat' => 0,
  19. 'IO::File' => 0,
  20. 'Encode' => 0,
  21. 'Locale::Country' => 0,
  22. 'Locale::Language' => 0,
  23. 'Time::Local' => 0,
  24. 'Cwd' => 0,
  25. 'Config::Std' => 0,
  26. 'MIME::Lite' => 0,
  27. 'Error' => 0,
  28. 'Template' => '>= 2.14',
  29. 'Template::Latex' => 0,
  30. 'Test::More' => 0,
  31. 'Test::Trap' => 0,
  32. 'Test::Exception' => 0,
  33. },
  34. recommends => {
  35. 'HTML::LinkExtor' => 0,
  36. 'FileHandle' => 0,
  37. 'Getopt::Long' => 0,
  38. 'Net::TCLink' => 0,
  39. 'Parse::RecDescent' => 0,
  40. },
  41. );
  42. $build->create_build_script;