-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile.PL
37 lines (35 loc) · 1.03 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Yancha',
AUTHOR => 'uzulla',
VERSION_FROM => 'lib/Yancha.pm',
### XXX NOW FAILURE TO USING ABSTRACT_FROM
# ABSTRACT_FROM => 'lib/Yancha.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'version' => 0,
'JSON' => 0,
'DBI' => 0,
'Encode' => 0,
'Nephia' => 0.80,
'Nephia::Plugin::Dispatch' => '0.01',
'Nephia::Plugin::View::Xslate' => '0.01',
'Time::HiRes' => 0,
'PocketIO' => 0.13,
'Plack' => 0,
'FindBin' => 0,
'Digest::SHA' => 0,
'SQL::Maker' => '1.05',
'LWP::Protocol::https' => 0,
'Plack::Session' => 0,
'Authen::Htpasswd' => 0,
'AnyEvent::PocketIO::Client' => 0,
'AnyEvent::Twitter' => 0,
'XML::FeedPP' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Yancha-*' },
);