~ubuntu-branches/ubuntu/vivid/libzabbix-api-perl/vivid

« back to all changes in this revision

Viewing changes to Build.PL

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-08-11 04:26:46 UTC
  • Revision ID: package-import@ubuntu.com-20120811042646-le16xahtf2pjzxuv
Tags: upstream-0.004+git20120629
ImportĀ upstreamĀ versionĀ 0.004+git20120629

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use 5.010;
 
2
use strict;
 
3
use warnings;
 
4
use Module::Build;
 
5
 
 
6
my $builder = Module::Build->new(
 
7
    module_name         => 'Zabbix::API',
 
8
    license             => 'GPL_3',
 
9
    dist_author         => [ q{Fabrice Gabolde <fabrice.gabolde@uperto.com>},
 
10
                             q{Marc Dequenes <marc.dequenes@uperto.com>} ],
 
11
    dist_version_from   => 'lib/Zabbix/API.pm',
 
12
    dist_abstract       => 'Access the JSON-RPC API of a Zabbix server',
 
13
    configure_requires => { 'Module::Build' => '0.36_14' },
 
14
    build_requires => {
 
15
        'Test::More' => 0,
 
16
        'Test::Exception' => 0,
 
17
        'File::Spec' => 0
 
18
    },
 
19
    requires => {
 
20
        'perl' => 5.010_001,
 
21
        'JSON' => 0,
 
22
        'LWP' => 0,
 
23
        'Params::Validate' => 0
 
24
    },
 
25
    add_to_cleanup      => [ 'Zabbix::API-*' ],
 
26
    release_status      => 'testing',
 
27
    meta_merge          => { resources =>
 
28
                             { repository => 'git://github.com/SFR-ZABBIX/Zabbix-API.git' } },
 
29
);
 
30
 
 
31
$builder->create_build_script();