Alien-LIBSVM
view release on metacpan or search on metacpan
"requires" : {
"Alien::Build" : "0.32",
"Alien::Build::MM" : "0.32",
"ExtUtils::MakeMaker" : "6.52",
"perl" : "5.013002"
}
},
"runtime" : {
"requires" : {
"Alien::Base" : "0.038",
"parent" : "0",
"perl" : "5.013002",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"Capture::Tiny" : "0",
"Path::Tiny" : "0",
"Test::More" : "0",
no_index:
directory:
- eg
- examples
- inc
- share
- t
- xt
requires:
Alien::Base: '0.038'
parent: '0'
perl: '5.013002'
strict: '0'
warnings: '0'
resources:
homepage: https://github.com/EntropyOrg/p5-Alien-LIBSVM
repository: https://github.com/EntropyOrg/p5-Alien-LIBSVM.git
version: '0.005'
x_alienfile:
generated_by: 'Dist::Zilla::Plugin::AlienBuild version 0.32'
requires:
Makefile.PL view on Meta::CPAN
"Alien::Build" => "0.32",
"Alien::Build::MM" => "0.32",
"ExtUtils::MakeMaker" => "6.52"
},
"DISTNAME" => "Alien-LIBSVM",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.013002",
"NAME" => "Alien::LIBSVM",
"PREREQ_PM" => {
"Alien::Base" => "0.038",
"parent" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Capture::Tiny" => 0,
"Path::Tiny" => 0,
"Test::More" => 0,
"Test::Most" => 0
},
"VERSION" => "0.005",
Makefile.PL view on Meta::CPAN
my %FallbackPrereqs = (
"Alien::Base" => "0.038",
"Alien::Build" => "0.32",
"Alien::Build::MM" => "0.32",
"Capture::Tiny" => 0,
"ExtUtils::MakeMaker" => "6.52",
"Path::Tiny" => 0,
"Test::More" => 0,
"Test::Most" => 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/LIBSVM.pm view on Meta::CPAN
package Alien::LIBSVM;
# ABSTRACT: Alien package for the LIBSVM library
$Alien::LIBSVM::VERSION = '0.005';
use strict;
use warnings;
use parent 'Alien::Base';
sub version {
my ($class) = @_;
( "" . $class->SUPER::version) =~ s/^\d/$&./gr;
}
sub inline_auto_include {
return [ "svm.h" ];
}
( run in 0.494 second using v1.01-cache-2.11-cpan-4d50c553e7e )