Alien-Libbz2

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Alien-Libbz2

0.24      2019-06-18 11:11:54 -0400
  - Update download URL

0.23      2018-06-06 12:03:00 -0400
  - Require Alien::Build 1.25 and friends for bugfixes

0.22      2017-03-02 06:37:32 +1100
  - Remove dep on Alien::Base2

0.21      2017-02-08 07:59:42 -0500
  - Require Alien::Build 0.11 for bugfixes

META.json  view on Meta::CPAN

         "web" : "https://github.com/Perl5-Alien/Alien-Libbz2/issues"
      },
      "homepage" : "https://metacpan.org/pod/Alien::Libbz2",
      "repository" : {
         "type" : "git",
         "url" : "git://github.com/Perl5-Alien/Alien-Libbz2.git",
         "web" : "https://github.com/Perl5-Alien/Alien-Libbz2"
      },
      "x_IRC" : "irc://irc.perl.org/#native"
   },
   "version" : "0.24",
   "x_alienfile" : {
      "generated_by" : "Dist::Zilla::Plugin::AlienBuild version 0.29",
      "requires" : {
         "share" : {
            "Alien::patch" : "0.09",
            "Archive::Tar" : "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-Libbz2
requires:
  Alien::Base: '1.25'
  perl: '5.008001'
resources:
  IRC: irc://irc.perl.org/#native
  bugtracker: https://github.com/Perl5-Alien/Alien-Libbz2/issues
  homepage: https://metacpan.org/pod/Alien::Libbz2
  repository: git://github.com/Perl5-Alien/Alien-Libbz2.git
version: '0.24'
x_alienfile:
  generated_by: 'Dist::Zilla::Plugin::AlienBuild version 0.29'
  requires:
    share:
      Alien::patch: '0.09'
      Archive::Tar: '0'
      Config: '0'
      HTTP::Tiny: '0.044'
      IO::Socket::SSL: '1.56'
      IO::Zlib: '0'

Makefile.PL  view on Meta::CPAN

    "lib/Alien/Libbz2.pm" => "\$(INST_LIB)/Alien/Libbz2.pm",
    "lib/Alien/bz2.pm"    => "\$(INST_LIB)/Alien/bz2.pm"
  },
  "PREREQ_PM" => {
    "Alien::Base" => "1.25"
  },
  "TEST_REQUIRES" => {
    "Test2::V0"   => "0.000060",
    "Test::Alien" => "0.12"
  },
  "VERSION" => "0.24",
  "test"    => {
    "TESTS" => "t/*.t"
  }
);

my %FallbackPrereqs = (
  "Alien::Base"         => "1.25",
  "Alien::Build"        => "0.32",
  "Alien::Build::MM"    => "1.25",
  "ExtUtils::MakeMaker" => "6.52",

README  view on Meta::CPAN

NAME

    Alien::Libbz2 - Build and make available bz2

VERSION

    version 0.24

SYNOPSIS

    In your Build.PL:

     use Module::Build;
     use Alien::Libbz2;
     my $builder = Module::Build->new(
       ...
       configure_requires => {

dist.ini  view on Meta::CPAN

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

[AlienBase::Doc]
name = libbz2
type = library
type = ffi
type = tool

[@Author::Plicease]
:version              = 2.11
travis_status         = 1

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

package Alien::Libbz2;

use strict;
use warnings;
use 5.008001;
use base 'Alien::Base';

# ABSTRACT: Build and make available bz2
our $VERSION = '0.24'; # VERSION




sub alien_helper
{
  return {
    bzip2 => sub { 'bzip2' },
  };
}

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

=pod

=encoding UTF-8

=head1 NAME

Alien::Libbz2 - Build and make available bz2

=head1 VERSION

version 0.24

=head1 SYNOPSIS

In your Build.PL:

 use Module::Build;
 use Alien::Libbz2;
 my $builder = Module::Build->new(
   ...
   configure_requires => {

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

package Alien::bz2;

use strict;
use warnings;
use Alien::Libbz2;

# ABSTRACT: Build and make available bz2
our $VERSION = '0.24'; # VERSION


sub new
{
  my($class) = @_;
  bless {}, $class;
}


sub cflags

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

=pod

=encoding UTF-8

=head1 NAME

Alien::bz2 - Build and make available bz2

=head1 VERSION

version 0.24

=head1 SYNOPSIS

Build.PL

 use Alien::bz2;
 use Module::Build;
 
 my $alien = Alien::bz2->new;
 my $build = Module::Build->new(



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