diff options
-rw-r--r-- | CONTRIBUTORS | 4 | ||||
-rw-r--r-- | Makefile.PL | 47 |
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; |