summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-04-18 00:06:49 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-04-18 00:06:49 +0000
commiteef62dc1063f401fbe4fbdd5fb573e6ed9cd0d8b (patch)
tree5efc9e0edf8217e1a7adf9eafe951d4754ef83f4
parent38b67b2a56e4fe33634d9439fecf39dc58a2a820 (diff)
Adding Makefile.PL
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1090 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r--CONTRIBUTORS4
-rw-r--r--Makefile.PL47
2 files changed, 51 insertions, 0 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 7b219831..6a5d5b74 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -53,6 +53,10 @@ documentation for Debian installations.
Chifung Fan [email omitted] contributed bugfixes.
Jeff Kowalczyk [email omitted] contributed to the INSTALL documentation.
+
+Matt S Trout, <mst @ shadowcatsystems.co.uk> CPAN: MSTROUT,
+IRC: mst#irc.perl.org contributed the initial Makefile.PL
+
Original Authors of SQL-Ledger:
===================================
Dieter Simader <dsimader @ sql-ledger.com>
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 00000000..5bb6d95e
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,47 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+use inc::Module::Install 0.65;
+
+name 'LedgerSMB';
+version '1.2.3';
+license 'GPL';
+
+perl_version '5.8.0';
+
+requires 'Data::Dumper';
+requires 'Locale::Maketext';
+requires 'Locale::Maketext::Lexicon' => '0.56';
+requires 'DBI' => '0.46';
+requires 'MIME::Base64';
+requires 'Digest::MD5';
+requires 'HTML::Entities';
+requires 'DBD::Pg';
+requires 'Math::BigFloat';
+requires 'IO::File';
+requires 'Encode';
+requires 'Locale::Country';
+requires 'Locale::Language';
+requires 'Time::Local';
+requires 'Cwd';
+requires 'Config::Std';
+requires 'MIME::Lite';
+
+build_requires 'Test::More';
+
+feature 'POS module credit card processing support',
+ -default => 0,
+ 'Net::TCLink' => 0;
+
+feature 'Experimental scripting engine',
+ -default => 0,
+ 'Parse::RecDescent' => 0;
+
+feature 'Developer tool dependencies',
+ -default => 0,
+ 'Getopt::Long' => 0,
+ 'FileHandle' => 0;
+
+auto_install;
+WriteAll;