root/wiki-toolkit-plugin-json/trunk/Build.PL

Revision 472, 412 bytes (checked in by dom, 4 years ago)

Add missing prerequisites

Line 
1#!/usr/bin/perl
2
3use strict;
4
5use Module::Build;
6
7Module::Build->new(
8  module_name  => 'Wiki::Toolkit::Plugin::JSON',
9  requires     => {
10                    'JSON' => 0,
11                    'Time::Piece' => 0,
12                    'URI::Escape' => 0,
13                  },
14  license      => 'perl',
15  sign => 1,
16  dist_abstract => 'A Wiki::Toolkit plugin to output RecentChanges JSON.', 
17)->create_build_script;
Note: See TracBrowser for help on using the browser.