]> git.ktnx.net Git - lsl.git/blob - Makefile.PL
hide the mass-action button on broken streak
[lsl.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 # Normalize version strings like 6.30_02 to 6.3002,
6 # so that we can do numerical comparisons on it.
7 my $eumm_version = $ExtUtils::MakeMaker::VERSION;
8 $eumm_version =~ s/_//;
9
10 WriteMakefile(
11     NAME                => 'App::REST::LazyShoppingList',
12     AUTHOR              => q{YOUR NAME <youremail@example.com>},
13     VERSION_FROM        => 'lib/App/REST/LazyShoppingList.pm lib/App/REST/LazyShoppingList.pm',
14     ABSTRACT            => 'YOUR APPLICATION ABSTRACT',
15     ($eumm_version >= 6.3001
16       ? ('LICENSE'=> 'perl')
17       : ()),
18     PL_FILES            => {},
19     PREREQ_PM => {
20         'Test::More' => 0,
21         'YAML'       => 0,
22         'Dancer2'     => 0.301004,
23     },
24     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
25     clean               => { FILES => 'App-REST-LazyShoppingList-*' },
26 );