about summary refs log tree commit diff
path: root/Makefile.PL
blob: 116eb3be961e3b5a38b9470fe778428001aea088 (plain) (blame)
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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'jitterbug',
    AUTHOR       => q{YOUR NAME <youremail@example.com>},
    VERSION_FROM => 'lib/jitterbug.pm',
    ABSTRACT     => 'YOUR APPLICATION ABSTRACT',
    ( $ExtUtils::MakeMaker::VERSION >= 6.3002
        ? ( 'LICENSE' => 'perl' )
        : () ),
    PL_FILES  => {},
    PREREQ_PM => {
        'Test::More'     => 0,
        'YAML'           => 0,
        'Dancer'         => 1.1810,
        'Redis'          => 0,
        'XML::Feed'      => 0,
        'DateTime'       => 0,
        'JSON'           => 0,
        'Git:Repository' => 0,
        'YAML'           => 0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'jitterbug-*' },
);