QR-Code
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use 5.010000;
use strict;
use warnings;
use ExtUtils::MakeMaker;
use ExtUtils::Depends;
# QR::Code encodes QR symbols in C. It links nothing and requires nothing
# at runtime: the encoder is arithmetic over its own tables, so there is
# no probe cascade here and no way for this to be unbuildable on a
# platform with a C compiler.
#
# It is a provider only - qr_abi.h lets a C consumer reach the encoder
# without going back through Perl.
my $INC = '-Iinclude';
my $pkg = ExtUtils::Depends->new('QR::Code');
$pkg->install('include/qr_abi.h');
mkdir 'Install' unless -d 'Install';
( run in 2.010 seconds using v1.01-cache-2.11-cpan-e7c6538aa59 )