| 1 |
use ExtUtils::MakeMaker; |
| 2 |
|
| 3 |
use Canary::Stability Geo::LatLon2Place => 1, 5.008; |
| 4 |
|
| 5 |
WriteMakefile( |
| 6 |
dist => { |
| 7 |
PREOP => 'pod2text LatLon2Place.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 8 |
COMPRESS => 'gzip -9v', |
| 9 |
SUFFIX => '.gz', |
| 10 |
}, |
| 11 |
NAME => "Geo::LatLon2Place", |
| 12 |
LIBS => ["-lcdb"], |
| 13 |
VERSION_FROM => "LatLon2Place.pm", |
| 14 |
CONFIGURE_REQUIRES => { |
| 15 |
"ExtUtils::MakeMaker" => 6.6, |
| 16 |
"Canary::Stability" => 0, |
| 17 |
}, |
| 18 |
PREREQ_PM => { |
| 19 |
common::sense => 3.75, |
| 20 |
}, |
| 21 |
); |
| 22 |
|