-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathMakefile.PL
30 lines (27 loc) · 1013 Bytes
/
Makefile.PL
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
use 5.016;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::AssetPack',
AUTHOR => 'Sebastian Riedel <[email protected]>',
LICENSE => 'artistic_2',
ABSTRACT_FROM => 'lib/Mojolicious/Plugin/AssetPack.pm',
VERSION_FROM => 'lib/Mojolicious/Plugin/AssetPack.pm',
TEST_REQUIRES => {'Test::More' => '0.88'},
PREREQ_PM => {'File::Which' => '1.21', 'IPC::Run3' => '0.048', 'Mojolicious' => '9.34'},
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/mojolicious/mojo-assetpack/issues'},
homepage => 'https://github.com/mojolicious/mojo-assetpack',
repository => {
type => 'git',
url => 'https://github.com/mojolicious/mojo-assetpack.git',
web => 'https://github.com/mojolicious/mojo-assetpack',
},
},
},
test => {TESTS => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
);