File: Makefile.PL

package info (click to toggle)
libstring-binary-interpolation-perl 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: perl: 12; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 522 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
  NAME         => 'String::Binary::Interpolation',
    META_MERGE => {
        license => 'open_source',
        resources => {
            repository => 'https://github.com/DrHyde/perl-modules-String-Binary-Interpolation',
            bugtracker => 'https://github.com/DrHyde/perl-modules-String-Binary-Interpolation/issues'
        }
    },
  VERSION_FROM => 'lib/String/Binary/Interpolation.pm',
  PREREQ_PM    => {
    'Test::More' => '0.88',
  },
);