-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
28 lines (26 loc) · 990 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer::Plugin::Auth::Facebook',
AUTHOR => 'Prajith <prajith@ndimensionz.com, prajithpalakkuda@gmail.com>',
VERSION_FROM => 'lib/Dancer/Plugin/Auth/Facebook.pm',
ABSTRACT_FROM => 'lib/Dancer/Plugin/Auth/Facebook.pm',
LICENSE => 'perl_5',
PL_FILES => {},
PREREQ_PM => {
'Dancer' => 0,
'Dancer::Plugin' => 0,
'Carp' => 0,
'Net::Facebook::Oauth2' => 0.10,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/Prajithp/Dancer-Plugin-Auth-Facebook/issues',
repository => 'https://github.com/Prajithp/Dancer-Plugin-Auth-Facebook',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer-Plugin-Auth-Facebook*' },
);