File: Build.PL

package info (click to toggle)
libgeo-hash-perl 0.02-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 83; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name       => 'Geo::Hash',
    license           => 'perl',
    dist_author       => 'Andy Armstrong <andy@hexten.net>',
    dist_version_from => 'lib/Geo/Hash.pm',
    requires          => {
        'Test::More' => 0,
    },
    add_to_cleanup => ['Geo-Hash-*'],
);

$builder->create_build_script();