summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL37
1 files changed, 37 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 00000000..000db1c4
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,37 @@
+use strict;
+use warnings;
+
+use Module::Build;
+
+my $build = Module::Build->new (
+ dist_name => 'LedgerSMB',
+ dist_version => '1.1.99',
+ license => 'GPL',
+ requires => {
+ 'perl' => '>= 5.8.0',
+ 'Data::Dumper' => 0,
+ 'Locale::Maketext' => 0,
+ 'Locale::Maketext::Lexicon' => '>= 0.56',
+ 'Mime::Base64' => 0,
+ 'Digest::MD5' => 0,
+ 'HTML::Entities' => 0,
+ 'DBI' => 0,
+ 'DBD::Pg' => 0,
+ 'Math::BigFloat' => 0,
+ 'IO::File' => 0,
+ 'Encode' => 0,
+ 'Locale::Country' => 0,
+ 'Locale::Language' => 0,
+ 'Time::Local' => 0,
+ 'Cwd' => 0,
+ },
+ recommends => {
+ 'HTML::LinkExtor' => 0,
+ 'FileHandle' => 0,
+ 'Getopt::Long' => 0,
+ 'Test::More' => 0,
+ 'Net::TCLink' => 0,
+ },
+);
+
+$build->create_build_script;