Alien-Kiwisolver

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "perl" : "5.006"
         }
      },
      "runtime" : {
         "recommends" : {
            "Inline" : "0.67",
            "Inline::CPP" : "0"
         },
         "requires" : {
            "Alien::Base" : "0.038",
            "parent" : "0",
            "perl" : "5.006",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::Most" : "0",
            "Test::Needs" : "0",
            "perl" : "5.006"

META.yml  view on Meta::CPAN

license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Alien-Kiwisolver
recommends:
  Inline: '0.67'
  Inline::CPP: '0'
requires:
  Alien::Base: '0.038'
  parent: '0'
  perl: '5.006'
  strict: '0'
  warnings: '0'
resources:
  homepage: https://github.com/Intertangle/p5-Alien-Kiwisolver
  repository: https://github.com/Intertangle/p5-Alien-Kiwisolver.git
version: '0.003'
x_alienfile:
  generated_by: 'Dist::Zilla::Plugin::AlienBuild version 0.31'
  requires:

Makefile.PL  view on Meta::CPAN

    "Alien::Build::MM" => "0.32",
    "ExtUtils::CppGuess" => "0.22",
    "ExtUtils::MakeMaker" => "6.52"
  },
  "DISTNAME" => "Alien-Kiwisolver",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME" => "Alien::Kiwisolver",
  "PREREQ_PM" => {
    "Alien::Base" => "0.038",
    "parent" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::Most" => 0,
    "Test::Needs" => 0
  },
  "VERSION" => "0.003",
  "test" => {
    "TESTS" => "t/*.t"

Makefile.PL  view on Meta::CPAN



my %FallbackPrereqs = (
  "Alien::Base" => "0.038",
  "Alien::Build" => "0.32",
  "Alien::Build::MM" => "0.32",
  "ExtUtils::MakeMaker" => "6.52",
  "Test::Most" => 0,
  "Test::Needs" => 0,
  "URI" => 0,
  "parent" => 0,
  "strict" => 0,
  "warnings" => 0
);


# BEGIN code inserted by Dist::Zilla::Plugin::AlienBuild
use Alien::Build::MM;
my $abmm = Alien::Build::MM->new;
%WriteMakefileArgs = $abmm->mm_args(%WriteMakefileArgs);
# END code inserted by Dist::Zilla::Plugin::AlienBuild

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

package Alien::Kiwisolver;
# ABSTRACT: Alien package for the Kiwi C++ implementation of the Cassowary constraint solving algorithm
$Alien::Kiwisolver::VERSION = '0.003';
use strict;
use warnings;

use parent qw(Alien::Base);

sub inline_auto_include {
	return  [ 'kiwi/kiwi.h' ];
}

sub Inline {
	my ($self, $lang) = @_;

	if( $lang =~ /^CPP$/ ) {
		my $params = Alien::Base::Inline(@_);



( run in 0.667 second using v1.01-cache-2.11-cpan-4d50c553e7e )