File: Makefile.PL

package info (click to toggle)
libwww-facebook-api-perl 0.4.18-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 652 kB
  • ctags: 289
  • sloc: perl: 1,143; makefile: 7
file content (29 lines) | stat: -rw-r--r-- 943 bytes parent folder | download | duplicates (4)
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 strict;
use warnings;
use ExtUtils::MakeMaker;
 
WriteMakefile(
    NAME                => 'WWW::Facebook::API',
    AUTHOR              => 'David Romano <unobe@cpan.org>',
    VERSION_FROM        => 'lib/WWW/Facebook/API.pm',
    ABSTRACT_FROM       => 'lib/WWW/Facebook/API.pm',
    LICENSE             => 'perl',
    PL_FILES            => {},
    PREREQ_PM => {
        'version'           => 0,
        'Crypt::SSLeay'     => 0,
        'Digest::MD5'       => 0,
        'JSON::Any'         => 0,
        'Time::HiRes'       => 0,
        'LWP::UserAgent'    => 0,
        'Readonly'          => 0,
    },
    META_MERGE          => {
        resources => {
            license    => 'http://dev.perl.org/licenses/',
            repository => 'http://github.com/unobe/perl-wfa/',
        }
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'WWW-Facebook-API-*' },
);