From eef62dc1063f401fbe4fbdd5fb573e6ed9cd0d8b Mon Sep 17 00:00:00 2001 From: einhverfr Date: Wed, 18 Apr 2007 00:06:49 +0000 Subject: Adding Makefile.PL git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1090 4979c152-3d1c-0410-bac9-87ea11338e46 --- CONTRIBUTORS | 4 ++++ Makefile.PL | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 Makefile.PL 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, CPAN: MSTROUT, +IRC: mst#irc.perl.org contributed the initial Makefile.PL + Original Authors of SQL-Ledger: =================================== Dieter Simader 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; -- cgit v1.2.3