File: Makefile.PL

package info (click to toggle)
libgeo-googleearth-pluggable-perl 0.17-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 276 kB
  • sloc: perl: 882; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,573 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
23
24
25
26
27
28
29
30
31
32
33
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME         => 'Geo::GoogleEarth::Pluggable',
    VERSION_FROM => 'lib/Geo/GoogleEarth/Pluggable.pm',
    AUTHOR       => 'Michael R. Davis (domain=>michaelrdavis,tld=>com,account=>perl)',
    ABSTRACT_FROM=> 'lib/Geo/GoogleEarth/Pluggable.pm',
    PREREQ_PM    => {
                     'Test::Simple'             => 0.44,
                     'Scalar::Util'             => 0,
                     'IO::Scalar'               => 0,
                     'XML::LibXML::LazyBuilder' => 0,
                     'Archive::Zip'             => 0,
                     'Method::Autoload'         => 0,
                     'Module::Pluggable'        => 0,
                     'Package::New'             => 0,
                    },
    LICENSE          => 'bsd',
    META_MERGE       => {
          'meta-spec' =>  { version => 2 },
          'resources' =>  {
                            homepage   => 'https://github.com/mrdvt92/perl-Geo-GoogleEarth-Pluggable',
                            bugtracker => {
                                web  => 'https://github.com/mrdvt92/perl-Geo-GoogleEarth-Pluggable/issues',
                            },
                            repository => {
                                type => 'git',
                                url  => 'git@github.com:mrdvt92/perl-Geo-GoogleEarth-Pluggable.git',
                                web  => 'https://github.com/mrdvt92/perl-Geo-GoogleEarth-Pluggable.git',
                            },
                          },
                        },

);