File: Makefile.PL

package info (click to toggle)
libmath-mpfr-perl 4.45-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,716 kB
  • sloc: perl: 1,508; ansic: 517; makefile: 9
file content (24 lines) | stat: -rwxr-xr-x 491 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
22
23
24
use strict;
use warnings;
use ExtUtils::MakeMaker;

our $LIBS;
our $DEFS;

$DEFS .= " -DWIN32_FMT_BUG_IGNORE" if $ENV{WIN32_FMT_BUG_IGNORE};

my %options = %{
  {
  'TYPEMAPS' => [],
  'NAME'     => 'Math::MPFR::Random',
  'LIBS'     => $LIBS,
  'INC'      => $INC,
  'DEFINE'   => $DEFS,
  'VERSION_FROM' => 'Random.pm',
  'clean'        => { FILES => '*.exe' },
  }
};
WriteMakefile(%options);

# Remove the Makefile dependency. Causes problems on a few systems.
# sub MY::makefile { '' }