Alien-Autotools
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 Archive::Tar;
use ExtUtils::CChecker;
use File::Spec::Functions qw(catdir catfile splitpath);
use IPC::Cmd qw(run can_run);
use Module::Build;
use Net::FTP;
use File::Path qw(make_path remove_tree);
# Prevent warnings about missing share directory:
lib/Alien/Autotools.pm view on Meta::CPAN
package Alien::Autotools;
use v5.10;
use strict;
use warnings FATAL => "all";
use utf8;
use Exporter "import";
our $VERSION = 'v0.0.6'; # VERSION
# ABSTRACT: Build and install the GNU build system.
our @EXPORT_OK = qw(autoconf_dir automake_dir libtool_dir);
sub autoconf_dir () { "##" }
sub automake_dir () { "##" }
sub libtool_dir () { "##" }
1;
=encoding utf8
=head1 NAME
Alien::Autotools - Build and install the GNU build system.
=head1 SYNOPSIS
use Alien::Autotools qw(autoconf_dir);
print autoconf_dir(), "\n";
( run in 1.075 second using v1.01-cache-2.11-cpan-49f99fa48dc )