Alien-WFDB
view release on metacpan or search on metacpan
"perl" : "5.006"
}
},
"runtime" : {
"recommends" : {
"Inline" : "0.67",
"Inline::C" : "0.62"
},
"requires" : {
"Alien::Base" : "0.038",
"parent" : "0",
"perl" : "5.006",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"Test::More" : "0",
"perl" : "5.006"
}
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Alien-WFDB
recommends:
Inline: '0.67'
Inline::C: '0.62'
requires:
Alien::Base: '0.038'
parent: '0'
perl: '5.006'
strict: '0'
warnings: '0'
resources:
homepage: https://github.com/EntropyOrg/p5-Alien-WFDB
repository: https://github.com/EntropyOrg/p5-Alien-WFDB.git
version: '0.005'
x_alienfile:
generated_by: 'Dist::Zilla::Plugin::AlienBuild version 0.29'
requires:
Makefile.PL view on Meta::CPAN
"Alien::Build" => "0.32",
"Alien::Build::MM" => "0.32",
"ExtUtils::MakeMaker" => "6.52"
},
"DISTNAME" => "Alien-WFDB",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Alien::WFDB",
"PREREQ_PM" => {
"Alien::Base" => "0.038",
"parent" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Test::More" => 0
},
"VERSION" => "0.005",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Alien::Base" => "0.038",
"Alien::Build" => "0.32",
"Alien::Build::MM" => "0.32",
"ExtUtils::MakeMaker" => "6.52",
"Test::More" => 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
);
plugin Extract => 'tar.gz';
patch sub {
# the -no-docs tarball does not have a doc directory, but the build
# script still looks for one --- so we create an empty one if it
# doesn't exist and add stub Makefile (with 'install' and 'clean'
# targets)
my $doc_makefile = Path::Tiny->new('doc/Makefile');
$doc_makefile->parent->mkpath;
$doc_makefile->spew_utf8(<<'EOF');
install:
clean:
EOF
};
build [
"sh ./configure --prefix=%{.install.prefix}",
lib/Alien/WFDB.pm view on Meta::CPAN
package Alien::WFDB;
$Alien::WFDB::VERSION = '0.005';
use strict;
use warnings;
use parent 'Alien::Base';
sub inline_auto_include {
[ 'wfdb.h' ];
}
sub libs {
my ($class) = @_;
join ' ', (
$class->install_type eq 'share' ? ('-L' . File::Spec->catfile($class->dist_dir, qw(lib)) ) : (),
( run in 0.524 second using v1.01-cache-2.11-cpan-4d50c553e7e )