summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authordakkar <dakkar@luxion>2007-08-23 18:47:04 +0000
committerdakkar <dakkar@luxion>2007-08-23 18:47:04 +0000
commit38f8cc36eb6f1ff8b37ea8774de4185fc76dc164 (patch)
tree464c29e2479efd4fd711523b96dfb657874ee455 /Build.PL
parentinizio import dal repository BlackBit (diff)
downloadTemplate-Plugin-ASCIITable-master.tar.gz
Template-Plugin-ASCIITable-master.tar.bz2
Template-Plugin-ASCIITable-master.zip
import da BlackBitHEADmaster
git-svn-id: svn://luxion/repos/Template-Plugin-ASCIITable@278 fcb26f47-9200-0410-b104-b98ab5b095f3
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;