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 (19 lines) | stat: -rwxr-xr-x 307 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 strict;
use warnings;
use ExtUtils::MakeMaker;

our $LIBS;

my %options = %{
{
  'NAME' => 'Math::MPFR::Prec',
  'LIBS' => $LIBS,
  'INC' => $INC,
  'VERSION_FROM' => 'Prec.pm'
}
};

WriteMakefile(%options);

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