~ubuntu-branches/ubuntu/utopic/libmath-geometry-voronoi-perl/utopic-proposed

1 by Florian Schlichting
Import upstream version 1.3
1
use 5.008;
2
use ExtUtils::MakeMaker;
3
4
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
5
# the contents of the Makefile that is written.
6
WriteMakefile(NAME          => 'Math::Geometry::Voronoi',
7
              VERSION_FROM  => 'lib/Math/Geometry/Voronoi.pm',
8
              PREREQ_PM     => {Params::Validate => 0,
9
                                Scalar::Util     => 0,
10
                                List::Util       => 0,
11
                                Class::Accessor  => 0},
12
              ABSTRACT_FROM => 'lib/Math/Geometry/Voronoi.pm',
13
              AUTHOR        => 'Sam Tregar <sam@tregar.com>',
14
              LIBS          => [''],
15
              DEFINE        => '',
16
              INC           => '-I.',
17
              OBJECT =>
18
                'voronoi_main.o edgelist.o heap.o geometry.o memory.o '
19
                . 'output.o voronoi_core.o Voronoi.o');