File: Makefile.PL

package info (click to toggle)
libgeo-google-mapobject-perl 0.06-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 164 kB
  • sloc: perl: 523; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 963 bytes parent folder | download | duplicates (4)
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
34
35
36
37
use strict;
use warnings;
use ExtUtils::MakeMaker;

my %conf = (
    NAME                => 'Geo::Google::MapObject',
    AUTHOR              => 'Nicholas Bamber <nicholas@periapt.co.uk>',
    VERSION_FROM        => 'lib/Geo/Google/MapObject.pm',
    ABSTRACT_FROM       => 'lib/Geo/Google/MapObject.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
	'Test::JSON' => 0,
	'Test::Deep' => 0,
	'HTML::Template::Pluggable' => 0,
	'HTML::Entities' => 0,
	'Scalar::Util' => 0,
	'Math::Trig' => '1.2',
	'JSON'=>0
    },
    META_MERGE    => {
        resources => {
            repository => 'http://github.com/periapt/geo-google-mapobject',
        },
    },
    LICENSE		=> 'perl',
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Geo-Google-MapObject-*' },
);

unless (eval { ExtUtils::MakeMaker->VERSION(6.46) }) {
    delete $conf{META_MERGE};
}

WriteMakefile(%conf);