File: Makefile.PL

package info (click to toggle)
libcrypt-jwt-perl 0.037-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: perl: 993; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 980 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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME             => 'Crypt::JWT',
    VERSION_FROM     => 'lib/Crypt/JWT.pm',
    AUTHOR           => 'Karel Miko',
    ABSTRACT         => 'JSON Web Token',
    MIN_PERL_VERSION => '5.006',
    LICENSE          => 'perl',
    PREREQ_PM => {
      'JSON'                => 0,
      'Exporter'            => '5.57',     # we need: use Exporter 'import';
      'Compress::Raw::Zlib' => 0,
      'CryptX'              => '0.067',    # we need: Ed25519+X25519
      'Scalar::Util'        => 0,
      'Test::More'          => '0.88',     # we need: done_testing
    },
    META_MERGE => {
      resources => {
        repository => 'https://github.com/DCIT/perl-Crypt-JWT',
        bugtracker => 'https://github.com/DCIT/perl-Crypt-JWT/issues',
      },
    },
    dist => {
      PREOP => 'perldoc -u lib/Crypt/JWT.pm | pod2markdown > README.md',
      TARFLAGS => '--owner=0 --group=0 -cvf'
    },
);