File: Makefile.PL

package info (click to toggle)
libgeo-constants-perl 0.07-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 84 kB
  • sloc: perl: 54; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 795 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
use ExtUtils::MakeMaker;
WriteMakefile(
  NAME          => 'Geo::Constants',
  VERSION_FROM  => 'lib/Geo/Constants.pm',
  ABSTRACT_FROM => 'lib/Geo/Constants.pm',
  LICENSE       => 'perl',
  PREREQ_PM     => {
                    'Exporter'     => 0,
                    'Test::Simple' => 0.44, #Tests
                   },
  'META_MERGE' => {
    'resources' => {
      'repository' => {
        'web' => 'https://github.com/mrdvt92/perl-Geo-Constants.git',
        'url' => 'git@github.com:mrdvt92/perl-Geo-Constants.git',
        'type' => 'git'
      },
      'homepage' => 'https://github.com/mrdvt92/perl-Geo-Constants',
      'bugtracker' => {
        'web' => 'https://github.com/mrdvt92/perl-Geo-Constants/issues'
      }
    },
    'meta-spec' => {
      'version' => 2
    }
  },
);