summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL12
1 files changed, 12 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..fc5febe
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,12 @@
+use strict;
+use Module::Build;
+
+Module::Build
+ ->new( module_name => "Text::Glob",
+ license => 'perl',
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ create_makefile_pl => 'traditional',
+ )
+ ->create_build_script;