summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL21
1 files changed, 21 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..81cc5ce
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,21 @@
+#!/usr/bin/perl
+use Module::Build;
+my $build=Module::Build
+ ->new(
+ module_name=>'Template::Plugin::ASCIITable',
+ dist_author=>'dakkar <dakkar@tehanutilus.net>',
+ license=>'perl',
+ dist_abstract=><<'END_ABSTRACT',
+Allows you to use Text::ASCIITable in your templates.
+END_ABSTRACT
+ requires=>{
+ Text::ASCIITable=>0,
+ Template=>0,
+ },
+ build_requires=>{
+ Test::More=>0,
+ },
+ create_makefile_pl =>'traditional',
+ sign=>1,
+ );
+$build->create_build_script;