File: Makefile.PL

package info (click to toggle)
libcatalyst-action-serialize-data-serializer-perl 1.08-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 248 kB
  • sloc: perl: 2,409; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 997 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use strict;
use warnings;
use inc::Module::Install;
use Module::Install::AuthorRequires;
use Module::Install::AuthorTests;
use Module::Install::Authority;

perl_version '5.8.1';

name 'Catalyst-Action-Serialize-Data-Serializer';
all_from 'lib/Catalyst/Action/Serialize/Data/Serializer.pm';

requires('Catalyst::Action::REST' => '1.08');
requires 'Moose' => '1.03';
requires 'namespace::autoclean';
requires('Catalyst::Runtime'         => '5.80030');
requires('Data::Serializer'          => '0.36');

test_requires 'Test::More' => '0.88';

authority 'MSTROUT';
author_requires 'Test::Pod' => 1.14;
author_requires 'Module::Info';
author_requires 'File::Find::Rule';

author_tests 'xt/';

auto_install;

if ($Module::Install::AUTHOR) {
    system("pod2text lib/Catalyst/Action/Serialize/Data/Serializer.pm > README")
        and die $!;
}

repository
   'git://git.shadowcat.co.uk/catagits/Catalyst-Action-Serialize-Data-Serializer.git';

add_metadata( x_authority => 'cpan:BOBTFISH' );

WriteAll;