summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build.PL30
1 files changed, 18 insertions, 12 deletions
diff --git a/Build.PL b/Build.PL
index bfa301f..e2d1f47 100644
--- a/Build.PL
+++ b/Build.PL
@@ -1,16 +1,22 @@
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,
- },
+ 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,
+ },
+ recommends => {
+ JSON => 0,
+ JSON::XS => 0,
+ },
)->create_build_script;
+
+# vim:noet:sw=4:ts=4