about summary refs log tree commit diff
path: root/Makefile.PL
blob: 880131b0aff2c7321df752be7b31551086dfc70e (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
28
29
30
31
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'jitterbug',
    AUTHOR       => q{franck cuny <franck@lumberjaph.net>},
    VERSION_FROM => 'lib/jitterbug.pm',
    ABSTRACT     => 'perl/github smoker',
    ( $ExtUtils::MakeMaker::VERSION >= 6.3002
        ? ( 'LICENSE' => 'perl' )
        : () ),
    PL_FILES  => {},
    PREREQ_PM => {
        'Test::More'               => 0,
        'YAML'                     => 0,
        'Dancer'                   => 1.1810,
        'XML::Feed'                => 0,
        'DateTime'                 => 0,
        'JSON'                     => 0,
        'Git::Repository'          => 0,
        'YAML'                     => 0,
        'Dancer::Template::Xslate' => 0,
        'Dancer::Plugin::DBIC'     => 0,
        'DBIx::Class'              => 0,
        'SQL::Translator'          => 0,
        'Digest::MD5'              => 0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'jitterbug-*' },
);