build script
[perl/html-form-simple.git] / Build.PL
diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
index 0000000..dd571a0
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,22 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+
+use Module::Build;
+
+Module::Build->new(
+       module_name => 'HTML::Form::Simple',
+       dynamic_config => 0,
+       license     => 'perl',
+       requires => {
+               'XML::Quote' => '0',
+               'perl' => '5.005_03',
+       },
+       meta_merge => {
+               resources => {
+                       repository => 'git://dev.shiar.net/html-form-simple',
+               },
+       },
+)->create_build_script;
+