File: Makefile.PL

package info (click to toggle)
libinline-files-perl 0.71-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 232 kB
  • sloc: perl: 617; xml: 12; makefile: 7
file content (22 lines) | stat: -rwxr-xr-x 580 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

use ExtUtils::MakeMaker;
WriteMakefile(
   NAME => q[Inline::Files],
   VERSION_FROM => 'lib/Inline/Files.pm',
   ABSTRACT_FROM => 'lib/Inline/Files.pm',
   PREREQ_PM => {
      'Filter::Util::Call' => 0,
      Test                 => 0,
      Cwd                  => 0,
   },
   META_MERGE        => {
      "meta-spec" => { version => 2 },
      resources => {
         repository => {
            type => 'git',
            url => 'git@gitlab.com:ambs/perl5-inline-files.git',
            web => 'https://gitlab.com/ambs/perl5-inline-files.git',
         },
      },
   },
);