File: Makefile.PL

package info (click to toggle)
libgeo-functions-perl 0.07-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 80 kB
  • ctags: 12
  • sloc: perl: 168; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
WriteMakefile(
  NAME      => q{Geo::Functions},
  VERSION_FROM => q{lib/Geo/Functions.pm},
  PREREQ_PM => {
                 strict            => 0,
                 vars              => 0,
                 Exporter          => 0,
                 Geo::Constants    => 0.06,
               },
               ($] >= 5.005 ? 
                 (
                   ABSTRACT_FROM => 'lib/Geo/Functions.pm',
                 ) : ()
               ),
             );