1
2use ExtUtils::MakeMaker;
3WriteMakefile(
4   NAME => q[Inline::Files],
5   VERSION_FROM => 'lib/Inline/Files.pm',
6   ABSTRACT_FROM => 'lib/Inline/Files.pm',
7   PREREQ_PM => {
8      'Filter::Util::Call' => 0,
9      Test                 => 0,
10      Cwd                  => 0,
11   },
12   META_MERGE        => {
13      "meta-spec" => { version => 2 },
14      resources => {
15         repository => {
16            type => 'git',
17            url => 'git@gitlab.com:ambs/perl5-inline-files.git',
18            web => 'https://gitlab.com/ambs/perl5-inline-files.git',
19         },
20      },
21   },
22);
23