File: Makefile.PL

package info (click to toggle)
libmath-convexhull-monotonechain-perl 0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 252 kB
  • ctags: 731
  • sloc: perl: 21; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 980 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use 5.008001;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

my $debug = grep {/^--debug$/} @ARGV;
WriteMakefile(
    NAME              => 'Math::ConvexHull::MonotoneChain',
    VERSION_FROM      => 'lib/Math/ConvexHull/MonotoneChain.pm', # finds $VERSION
    PREREQ_PM         => {
      'Data::Dumper' => '0',
      'Test::More' => '0.88',
    }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/Math/ConvexHull/MonotoneChain.pm', # retrieve abstract from module
       AUTHOR         => 'Steffen Mueller <smueller@cpan.org>') : ()),
    LIBS              => [''], # e.g., '-lm'
    DEFINE            => ($debug ? '-O0 -Wall -Wextra' : '-O2'), # e.g., '-DHAVE_SOMETHING'
    INC               => '-I.', # e.g., '-I. -I/usr/include/other'
    OBJECT            => '$(O_FILES)', # link all the C files too
);