-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile.PL
executable file
·77 lines (75 loc) · 2.5 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
VERSION => '0.01',
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git@github.com:Troglodyne-Internet-Widgets/tCMS.git',
web => 'https://github.com/Troglodyne-Internet-Widgets/tCMS',
},
},
},
PREREQ_PM => {
'Trog::TOTP' => '0',
'CGI::Cookie' => '0',
'Capture::Tiny' => '0',
'Carp' => '0',
'Config::Simple' => '0',
'DBD::SQLite' => '0',
'DBI' => '0',
'Date::Format' => '0',
'DateTime::Format::HTTP' => '0',
'Digest::SHA' => '0',
'Errno' => '0',
'File::Basename' => '0',
'File::Copy' => '0',
'File::Slurper' => '0',
'File::Touch' => '0',
'HTML::SocialMeta' => '0',
'HTTP::Body' => '0',
'IO::String' => '0',
'Imager::QRCode' => '0',
'JSON::MaybeXS' => '0',
'List::Util' => '0',
'Mojo::File' => '0',
'POSIX' => '0',
'Pod::Html' => '0',
'Starman' => '0',
'Text::Xslate' => '0',
'URL::Encode' => '0',
'UUID' => '0',
'WWW::Sitemap::XML' => '0',
'WWW::SitemapIndex::XML' => '0',
'CSS::Minifier::XS' => '0',
'JavaScript::Minifier::XS' => '0',
'Digest::SHA' => '0',
'Path::Tiny' => '0',
'IO::Compress::Brotli' => '0',
'IO::Compress::Gzip' => '0',
'IO::Compress::Deflate' => '0',
'HTTP::Parser::XS' => '0',
'Log::Dispatch' => '0',
'Log::Dispatch::FileRotate' => '0',
'Digest::SHA' => '0',
'MIME::Base32::XS' => '0',
'URI' => '0',
'FindBin::libs' => '0',
'Carp::Always' => '0',
'HTTP::Tiny::UNIX' => '0',
'Email::MIME' => '0',
'Email::Sender::Simple' => '0',
'POSIX::strptime' => '0',
'Log::Dispatch::DBI' => '0',
'Email::MIME' => '0',
'Email::Sender::Simple' => '0',
'DNS::Unbound' => '0',
'Net::IP' => '0',
'File::LibMagic' => '0',
'Linux::Perl::inotify' => '0',
},
test => {TESTS => 't/*.t'}
);