Algorithm-MarkovChain-GHash
view release on metacpan or search on metacpan
This was originally written using Inline, but never released due to
lack of round tuits. Recently a tuit supply arrived so I converted it
into XS to reduce dependencies.
=head1 BUGS
None known, maybe after I write some tests.
=head1 AUTHOR
Richard Clamp <richardc@unixbeard.net>
=cut
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
`glib-config --libs`;
die "Can't find glib-config in your path, so bailing now" if $?;
WriteMakefile(
NAME => 'Algorithm::MarkovChain::GHash',
VERSION_FROM => 'GHash.pm',
AUTHOR => 'Richard Clamp <richardc@unixbeard.net>',
ABSTRACT => 'Markov Chain implementation',
LIBS => `glib-config --libs`,
INC => `glib-config --cflags`,
PREREQ_PM => { 'Algorithm::MarkovChain' => 0.05,
'Test::More' => 0 },
);
( run in 1.286 second using v1.01-cache-2.11-cpan-df04353d9ac )