Alien-GMP
view release on metacpan or search on metacpan
#!/usr/bin/env perl
use v5.10;
use strict;
use warnings FATAL => "all";
use utf8;
use version;
use Alien::Autotools qw(autoconf_dir automake_dir libtool_dir);
use Archive::Tar;
use Cwd qw(realpath);
use ExtUtils::CChecker;
use File::Spec::Functions qw(catdir catfile);
use File::Path qw(make_path remove_tree);
use IPC::Cmd qw(can_run run);
use Module::Build;
use Net::FTP;
lib/Alien/GMP.pm view on Meta::CPAN
package Alien::GMP;
use v5.10;
use strict;
use warnings FATAL => "all";
use utf8;
our $VERSION = 'v0.0.6'; # VERSION
# ABSTRACT: Build and install the GNU Multiple Precision library.
sub inc_dir () { "##" }
sub lib_dir () { "##" }
1;
=encoding utf8
=head1 NAME
Alien::GMP - Build and install the GNU Multiple Precision library.
=head1 SYNOPSIS
my $inc_dir = Alien::GMP::inc_dir();
my $lib_dir = Alien::GMP::lib_dir();
( run in 1.134 second using v1.01-cache-2.11-cpan-49f99fa48dc )