summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorjeff <jeff>2009-03-02 23:50:16 +0000
committerjeff <jeff>2009-03-02 23:50:16 +0000
commitb526887fd57cb8da5d3d666a25d6517357d40188 (patch)
tree88475baca676a3d05da4c16bc07f437522b4ec98 /Makefile.PL
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..f119db4
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,12 @@
+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::OnlineThirdPartyPayment::Dummy',
+ 'VERSION_FROM' => 'Dummy.pm', # finds $VERSION
+ 'AUTHOR' => 'Jeff Finucane <jeff@cmh.net>',
+ 'PREREQ_PM' => {
+ 'Business::OnlineThirdPartyPayment' => 3,
+ 'Business::CreditCard' => 0.27,
+ },
+);