forked from mojolicious/mojo-assetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
29 lines (29 loc) · 909 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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::AssetPack',
ABSTRACT_FROM => 'lib/Mojolicious/Plugin/AssetPack.pm',
VERSION_FROM => 'lib/Mojolicious/Plugin/AssetPack.pm',
AUTHOR => 'Jan Henning Thorsen <[email protected]>',
LICENSE => 'perl',
PREREQ_PM => {
'CSS::Minifier::XS' => '0.01',
'File::Which' => '1.00',
'IPC::Run3' => '0.04',
'JavaScript::Minifier::XS' => '0.01',
'Mojolicious' => '4.30',
},
BUILD_REQUIRES => {
'Test::More' => '0.90',
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'https://metacpan.org/release/Mojolicious-Plugin-AssetPack',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Mojolicious-Plugin-AssetPack',
repository => 'https://github.com/jhthorsen/mojolicious-plugin-assetpack',
},
},
test => {
TESTS => 't/*.t',
},
);