-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
29 lines (26 loc) · 982 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::HTMX',
VERSION_FROM => 'lib/Mojolicious/Plugin/HTMX.pm',
ABSTRACT_FROM => 'lib/Mojolicious/Plugin/HTMX.pm',
LICENSE => 'artistic_2',
AUTHOR => q{Giuseppe Di Terlizzi <gdt@cpan.org>},
PREREQ_PM => {'Mojolicious' => '9.0'},
META_MERGE => {
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/giterlizzi/perl-Mojolicious-Plugin-HTMX/issues',},
repository => {
type => 'git',
url => 'git://github.com/giterlizzi/perl-Mojolicious-Plugin-HTMX',
web => 'https://github.com/giterlizzi/perl-Mojolicious-Plugin-HTMX'
},
}
},
test => {TESTS => 't/*.t'},
dist => {COMPRESS => 'gzip -9f', SUFFIX => 'gz',},
clean => {FILES => 'Mojolicious-Plugin-HTMX-*'},
);