File: Makefile.PL

package info (click to toggle)
libnet-oauth2-perl 0.67-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 224 kB
  • sloc: perl: 760; makefile: 7
file content (61 lines) | stat: -rw-r--r-- 1,626 bytes parent folder | download
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

use ExtUtils::MakeMaker;

WriteMakefile
  ( NAME        => 'Net::OAuth2'
  , VERSION     => '0.67'
  , PREREQ_PM   =>
      { 'Test::More' => 0,
        'constant' => 0,
        'strict' => 0,
        'warnings' => 0,
        'Carp' => 0,
        'Encode' => 0,
        'Scalar::Util' => 0,
        'MIME::Base64' => 0,
        'URI' => '0',
        'JSON::MaybeXS' => 0,
        'LWP::UserAgent' => 0,
        'HTTP::Request' => 0,
        'HTTP::Response' => 0,
        'HTTP::Status' => 0,

# optional
#         'Test::Mock::LWP::Dispatch' => 0
      }
  , AUTHOR      => 'Thomas Uhle <uhle@cpan.org>'
  , ABSTRACT    => 'OAuth2 authenticating client'
  , LICENSE     => 'perl_5'

  , META_MERGE =>
      { 'meta-spec' => { version => 2 }
      , resources  =>
          { homepage   => 'https://search.cpan.org/~uhle/Net-OAuth2/',
            repository => {
                type   => 'git',
                url    => 'https://gitlab.com/uhle/perl-net-oauth2.git',
                web    => 'https://gitlab.com/uhle/perl-net-oauth2'
            },
            bugtracker => {
                web    => 'https://gitlab.com/uhle/perl-net-oauth2/-/issues',
            },
            license  => 'http://dev.perl.org/licenses/',
          }
      }

  );

#### the next lines are added for OODoc, which generates the
#### distribution.
sub MY::postamble { <<'__POSTAMBLE' }

# for DIST
RAWDIR          = ../public_html/net-oauth2/raw
DISTDIR         = ../public_html/net-oauth2/source

# for POD
FIRST_YEAR      = 2013
EMAIL           = uhle@cpan.org
WEBSITE         = https://search.cpan.org/~uhle/Net-OAuth2/
__POSTAMBLE