From: Mischa POSLAWSKY Date: Tue, 10 Nov 2009 21:28:22 +0000 (+0100) Subject: Build.PL X-Git-Url: http://git.shiar.net/perl/list-index.git/commitdiff_plain/418d40a30c8ce943796a98e5fc67d3660b26531a Build.PL --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..27649bd --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/_build/ +/Build +/META.yml +/MANIFEST +/blib/ +/cover_db/ diff --git a/Build.PL b/Build.PL new file mode 100755 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; +