summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authordakkar <dakkar@luxion>2005-10-19 18:28:34 +0000
committerdakkar <dakkar@luxion>2005-10-19 18:28:34 +0000
commit2dd592c0b04478695d3b5b32744ac09466387a78 (patch)
treeb857344b0fd1374abe74541d09d8f7addc08fb9b /Build.PL
parentcreo il progetto (diff)
downloadBookmarks-2dd592c0b04478695d3b5b32744ac09466387a78.tar.gz
Bookmarks-2dd592c0b04478695d3b5b32744ac09466387a78.tar.bz2
Bookmarks-2dd592c0b04478695d3b5b32744ac09466387a78.zip
template iniziale
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL13
1 files changed, 13 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..20ab39b
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,13 @@
+use strict;
+use Catalyst::Build;
+
+my $build = Catalyst::Build->new(
+ create_makefile_pl => 'passthrough',
+ license => 'perl',
+ module_name => 'Bookmarks',
+ requires => { Catalyst => '5.10' },
+ create_makefile_pl => 'passthrough',
+ script_files => [ glob('script/*') ],
+ test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
+);
+$build->create_build_script;