Alien-gmake

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Alien-gmake

0.24      2022-09-23 20:33:41 -0600
  - Re-released because 0.22 is missing from CPAN

0.22      2020-02-21 00:53:14 -0500
  - Switch to https instead of http for better security.

0.21      2018-01-31 10:33:46 -0500
  - implicit modification of PATH is now removed
    (was deprecated in 0.17)

0.20      2017-06-17 11:30:48 -0400

META.json  view on Meta::CPAN

         "web" : "https://github.com/PerlAlien/Alien-gmake/issues"
      },
      "homepage" : "https://metacpan.org/pod/Alien::gmake",
      "repository" : {
         "type" : "git",
         "url" : "git://github.com/PerlAlien/Alien-gmake.git",
         "web" : "https://github.com/PerlAlien/Alien-gmake"
      },
      "x_IRC" : "irc://irc.perl.org/#native"
   },
   "version" : "0.24",
   "x_alienfile" : {
      "generated_by" : "Dist::Zilla::Plugin::AlienBuild version 0.32",
      "requires" : {
         "share" : {
            "Archive::Tar" : "0",
            "Capture::Tiny" : "0",
            "Config" : "0",
            "HTTP::Tiny" : "0.044",
            "IO::Socket::SSL" : "1.56",
            "IO::Zlib" : "0",

META.yml  view on Meta::CPAN

  version: '1.4'
name: Alien-gmake
requires:
  Alien::Base: '0.038'
  perl: '5.006'
resources:
  IRC: irc://irc.perl.org/#native
  bugtracker: https://github.com/PerlAlien/Alien-gmake/issues
  homepage: https://metacpan.org/pod/Alien::gmake
  repository: git://github.com/PerlAlien/Alien-gmake.git
version: '0.24'
x_alienfile:
  generated_by: 'Dist::Zilla::Plugin::AlienBuild version 0.32'
  requires:
    share:
      Archive::Tar: '0'
      Capture::Tiny: '0'
      Config: '0'
      HTTP::Tiny: '0.044'
      IO::Socket::SSL: '1.56'
      IO::Zlib: '0'

Makefile.PL  view on Meta::CPAN

  "PM"               => {
    "lib/Alien/gmake.pm" => "\$(INST_LIB)/Alien/gmake.pm"
  },
  "PREREQ_PM" => {
    "Alien::Base" => "0.038"
  },
  "TEST_REQUIRES" => {
    "Test2::V0"   => "0.000121",
    "Test::Alien" => "0.56"
  },
  "VERSION" => "0.24",
  "test"    => {
    "TESTS" => "t/*.t"
  }
);

my %FallbackPrereqs = (
  "Alien::Base"         => "0.038",
  "Alien::Build"        => "0.32",
  "Alien::Build::MM"    => "0.32",
  "Capture::Tiny"       => 0,

README  view on Meta::CPAN

NAME

    Alien::gmake - Find or build GNU Make

VERSION

    version 0.24

SYNOPSIS

    From your Perl script:

     use Alien::gmake ();
     use Env qw( @PATH );
     
     unshift @ENV, Alien::gmake->bin_dir;
     my $gmake = Alien::gmake->exe;

dist.ini  view on Meta::CPAN

name             = Alien-gmake
author           = Graham Ollis <plicease@cpan.org>
license          = Perl_5
copyright_holder = Graham Ollis
copyright_year   = 2014-2022
version          = 0.24

[@Author::Plicease]
:version       = 2.69
release_tests  = 1
github_user    = PerlAlien
irc            = irc://irc.perl.org/#native
test2_v0       = 1

workflow = static
workflow = linux

lib/Alien/gmake.pm  view on Meta::CPAN

package Alien::gmake;

use strict;
use warnings;
use base qw( Alien::Base );
use Env qw( @PATH );
use File::Spec;

# ABSTRACT: Find or build GNU Make
our $VERSION = '0.24'; # VERSION


sub exe
{
  my($class) = @_;
  $class->runtime_prop->{command};
}


sub alien_helper

lib/Alien/gmake.pm  view on Meta::CPAN

=pod

=encoding UTF-8

=head1 NAME

Alien::gmake - Find or build GNU Make

=head1 VERSION

version 0.24

=head1 SYNOPSIS

From your Perl script:

 use Alien::gmake ();
 use Env qw( @PATH );
 
 unshift @ENV, Alien::gmake->bin_dir;
 my $gmake = Alien::gmake->exe;



( run in 1.130 second using v1.01-cache-2.11-cpan-7add2cbd662 )