Build.PL
authorMischa POSLAWSKY <perl@shiar.org>
Tue, 10 Nov 2009 21:28:22 +0000 (22:28 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 10 Nov 2009 21:36:11 +0000 (22:36 +0100)
.gitignore [new file with mode: 0644]
Build.PL [new file with mode: 0755]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..27649bd
--- /dev/null
@@ -0,0 +1,6 @@
+/_build/
+/Build
+/META.yml
+/MANIFEST
+/blib/
+/cover_db/
diff --git a/Build.PL b/Build.PL
new file mode 100755 (executable)
index 0000000..93cecc2
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,20 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+use Module::Build;
+
+Module::Build->new(
+       module_name => 'List::Index',
+       dynamic_config => 0,
+       license     => 'perl',
+       requires => {
+               'perl' => '5.010',
+       },
+       meta_merge => {
+               resources => {
+                       repository => 'git://git.shiar.nl/list-index',
+               },
+       },
+)->create_build_script;
+