summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build.PL16
1 files changed, 16 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..bfa301f
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,16 @@
+use Module::Build;
+
+Module::Build->new(
+ dist_name => 'Tanja',
+ dist_version => '0.1',
+ dist_author => 'Yoran Heling <yorhel@cpan.org>',
+ dist_abstract => 'An interface to the Tanja communication system',
+ license => 'mit',
+ pm_files => {
+ 'Tanja.pm' => 'lib/Tanja.pm',
+ },
+ requires => {
+ perl => '5.10.0',
+ AnyEvent => 0,
+ },
+)->create_build_script;