Alien::libhisto

Perl Alien distribution that probes for or builds the libhisto fast C histogramming library.

Installation

cpanm Alien::libhisto

Or from source:

perl Makefile.PL
make
make test
make install

Synopsis

In your Makefile.PL:

use ExtUtils::MakeMaker;
use Alien::Base::Wrapper qw( Alien::libhisto !export );

WriteMakefile(
    Alien::Base::Wrapper->mm_args2(
        NAME => 'Math::Histo',
        ...
    ),
);