summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authormark <mark>2009-10-27 20:17:42 +0000
committermark <mark>2009-10-27 20:17:42 +0000
commitdd2ba7797e564e9364af14225ffd435ed00933f4 (patch)
treecb0a8419e573932390dcf2c88500b905dc35485e /Makefile.PL
parentb99fc5647d41a7dfadd0817228b91191d1ad04ad (diff)
add missing build files
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..56947e4
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,19 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Business::OnlinePayment::Jety',
+ AUTHOR => 'Mark Wells <mark@freeside.biz>',
+ VERSION_FROM => 'lib/Business/OnlinePayment/Jety.pm',
+ ABSTRACT_FROM => 'lib/Business/OnlinePayment/Jety.pm',
+ ($ExtUtils::MakeMaker::VERSION >= 6.3002
+ ? ('LICENSE'=> 'perl')
+ : ()),
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Test::More' => 0,
+ },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Business-OnlinePayment-Jety-*' },
+);