File: Makefile.PL

package info (click to toggle)
libpackage-new-perl 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 38; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 830 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
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME          => 'Package::New',
    VERSION_FROM  => 'lib/Package/New.pm',
    AUTHOR        => 'Michael R. Davis',
    LICENSE       => 'bsd',
    ABSTRACT_FROM => 'lib/Package/New.pm',
    PREREQ_PM     => {
                      'Test::Simple' => 0.44,
                      'Devel::Hide'  => 0,
                     },
  'META_MERGE' => {
    'resources' => {
      'repository' => {
        'web' => 'https://github.com/mrdvt92/perl-Package-New.git',
        'url' => 'git@github.com:mrdvt92/perl-Package-New.git',
        'type' => 'git'
      },
      'homepage' => 'https://github.com/mrdvt92/perl-Package-New',
      'bugtracker' => {
        'web' => 'https://github.com/mrdvt92/perl-Package-New/issues'
      }
    },
    'meta-spec' => {
      'version' => 2
    }
  },
);