summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2012-03-22 19:55:04 +0100
committerYorhel <git@yorhel.nl>2012-03-22 19:55:04 +0100
commitda9ae70534e814e69fa2dc5b17a390bec9cc78ee (patch)
tree8ee43b8d79bc1a73b6f02314be1ff54e02e32856
parent07072f826b86221d321b5423b63f351a5a155cd1 (diff)
Added Build.PL to make this a proper distributable module
-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;