X-Git-Url: http://git.shiar.net/perl/list-index.git/blobdiff_plain/a621cd10e5c167968a778cb6a1a4f319d4949a7a..418d40a30c8ce943796a98e5fc67d3660b26531a:/Build.PL 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; +