summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 000db1c4ee79450bd7c39970a0a30e6d446bdf77 (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.1.99',
  7. license => 'GPL',
  8. requires => {
  9. 'perl' => '>= 5.8.0',
  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,
  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. },
  26. recommends => {
  27. 'HTML::LinkExtor' => 0,
  28. 'FileHandle' => 0,
  29. 'Getopt::Long' => 0,
  30. 'Test::More' => 0,
  31. 'Net::TCLink' => 0,
  32. },
  33. );
  34. $build->create_build_script;