summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..5aa2d49
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,17 @@
+use inc::Module::Install;
+
+name 'Thread-Queue-Event';
+license 'perl';
+all_from 'lib/Thread/Queue/Event.pm';
+
+requires 'Thread::Queue' => 0,
+ 'Moose' => 0,
+ 'Class::MOP' => 0,
+ 'perl' => '5.8.0',
+;
+
+test_requires 'Test::Most' => 0,
+ 'Glib' => 0,
+;
+
+WriteAll;