CommonMark
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
# Don't edit it but the dist.ini and plugins used to construct it.
use strict;
use warnings;
use 5.008;
use ExtUtils::MakeMaker;
use Devel::CheckLib;
{
local @ARGV = @ARGV;
unshift(@ARGV, ExtUtils::MakeMaker::_shellwords($ENV{PERL_MM_OPT} || ''))
if $ExtUtils::MakeMaker::VERSION >= 6.73_08;
check_lib(
header => 'cmark.h',
function => 'return CMARK_VERSION >= 0x001500 ? 0 : 1;',
) or warn('libcmark 0.21.0 or higher not found'), exit;
}
my %WriteMakefileArgs = (
"ABSTRACT" => "Interface to the CommonMark C library",
[CopyFilesFromBuild]
copy = Makefile.PL
copy = MANIFEST
copy = META.json
copy = META.yml
[MakeMaker::Awesome]
WriteMakefile_arg = LIBS => '-lcmark'
header = use Devel::CheckLib;
header = {
header = local @ARGV = @ARGV;
header = unshift(@ARGV, ExtUtils::MakeMaker::_shellwords($ENV{PERL_MM_OPT} || ''))
header = if $ExtUtils::MakeMaker::VERSION >= 6.73_08;
header = check_lib(
header = header => 'cmark.h',
header = function => 'return CMARK_VERSION >= 0x001500 ? 0 : 1;',
header = ) or warn('libcmark 0.21.0 or higher not found'), exit;
header = }
( run in 0.445 second using v1.01-cache-2.11-cpan-49f99fa48dc )