summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorMOCK <mock@mailchannels.com>2005-04-01 10:48:58 -0800
committerMichael G. Schwern <schwern@pobox.com>2009-12-09 22:42:40 -0800
commit2061818b32b3e5a674f26bd82fc8802b4de92785 (patch)
tree1eac84e7fff0dd545de3a094736f927b4fa2a5e5 /Makefile.PL
initial import of Business-OnlinePayment-Exact 0.01 from CPAN
git-cpan-module: Business-OnlinePayment-Exact git-cpan-version: 0.01 git-cpan-authorid: MOCK git-cpan-file: authors/id/M/MO/MOCK/Business-OnlinePayment-Exact-0.01.tar.gz
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..0a8ae3d
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,16 @@
+use 5.006001;
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+ NAME => 'Business::OnlinePayment::Exact',
+ VERSION_FROM => 'lib/Business/OnlinePayment/Exact.pm', # finds $VERSION
+ PREREQ_PM => {'Test::More' => 0,
+ 'Term::ReadLine' => 0,
+ 'Term::ReadLine::Gnu' => 0,
+ 'Business::OnlinePayment' => '2.01',
+ 'SOAP::Lite' => '0.65_3'}, # e.g., Module::Name => 1.1
+ ($] >= 5.005 ? ## Add these new keywords supported since 5.005
+ (ABSTRACT_FROM => 'lib/Business/OnlinePayment/Exact.pm', # retrieve abstract from module
+ AUTHOR => 'mock <mock@obscurity.org>') : ()),
+);