File: Makefile.PL

package info (click to toggle)
libtimedate-perl 2.3300-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 300 kB
  • sloc: perl: 2,194; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 550 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
# This -*- perl -*- script makes the Makefile

BEGIN { require 5.004 }

use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
  NAME     => 'Date::Parse',
  DISTNAME => 'TimeDate',
  AUTHOR   => 'Graham Barr <gbarr@pobox.com>',
  VERSION_FROM => 'lib/Date/Parse.pm',
  META_MERGE => {
      resources => {
        bugtracker => 'https://github.com/atoomic/perl-TimeDate/issues',
        repository => 'https://github.com/atoomic/perl-TimeDate',
      }
  },
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
);