B-Utils1

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Exporter" : "0",
            "ExtUtils::Depends" : "0.404",
            "Scalar::Util" : "0",
            "Test::More" : "0",
            "perl" : "5.006"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "license" : [
         "http://dev.perl.org/licenses/"

META.yml  view on Meta::CPAN

meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: B-Utils1
no_index:
  directory:
    - t
    - inc
requires:
  Exporter: '0'
  ExtUtils::Depends: '0.404'
  Scalar::Util: '0'
  Test::More: '0'
  perl: '5.006'
resources:
  license: http://dev.perl.org/licenses/
  repository: http://github.com/rurban/B-Utils1
version: '1.05'

Makefile.PL  view on Meta::CPAN

#!perl
use 5.006;
use strict;

my $req_EUDepends = 0.404;
eval { require ExtUtils::Depends; };
if ( $@ or ExtUtils::Depends->VERSION < $req_EUDepends ) {
  warn "ExtUtils::Depends $req_EUDepends is required to maintain this module.\nUsing the packaged helper file.";
} else {
  my $pkg = ExtUtils::Depends->new('B::Utils1');
  $pkg->install('BUtils1.h');
  $pkg->add_xs("Utils1.xs");
  $pkg->add_pm( 'lib/B/Utils1.pm' => '$(INST_LIB)/B/Utils1.pm',
                'lib/B/Utils1/OP.pm' => '$(INST_LIB)/B/Utils1/OP.pm' );
  $pkg->add_typemaps("typemap");

Makefile.PL  view on Meta::CPAN


use ExtUtils::MakeMaker;
WriteMakefile1(
    NAME          => 'B::Utils1',
    VERSION_FROM  => 'lib/B/Utils1.pm',
    PREREQ_PM     => {
        'Scalar::Util' => 0,
        'Exporter'     => 0,
    },
    BUILD_REQUIRES => {
        'ExtUtils::Depends' => 0.404, # DD Sortkeys
        'Test::More' => 0,
    },
    ABSTRACT_FROM => 'lib/B/Utils1.pm',
    AUTHOR        => 'Reini Urban <rurban@cpan.org>',
    LICENSE       => 'perl',
    MIN_PERL_VERSION => 5.006,
    META_MERGE => {
      resources => {
        repository => 'http://github.com/rurban/B-Utils1',
        license    => 'http://dev.perl.org/licenses/',



( run in 2.466 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )