File: Makefile.PL

package info (click to toggle)
libmath-geometry-voronoi-perl 1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 304 kB
  • sloc: ansic: 1,052; perl: 259; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 878 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use 5.008;
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(NAME          => 'Math::Geometry::Voronoi',
              VERSION_FROM  => 'lib/Math/Geometry/Voronoi.pm',
              PREREQ_PM     => {Params::Validate => 0,
                                Scalar::Util     => 0,
                                List::Util       => 0,
                                Class::Accessor  => 0},
              ABSTRACT_FROM => 'lib/Math/Geometry/Voronoi.pm',
              AUTHOR        => 'Sam Tregar <sam@tregar.com>',
              LIBS          => [''],
              DEFINE        => '',
              INC           => '-I.',
              OBJECT =>
                'voronoi_main.o edgelist.o heap.o geometry.o memory.o '
                . 'output.o voronoi_core.o Voronoi.o');