Acme-FSM
view release on metacpan or search on metacpan
# Copyright (C) 2008 DMA.
# $Id: Build.PL 564 2025-02-13 21:33:15Z whynot $
# Copyright 2012, 2022 Eric Pozharski <whynot@pozharski.name>
# Copyright 2025 Eric Pozharski <wayside.ultimate@tuta.io>
# GNU GPLv3
# AS-IS, NO-WARRANTY, HOPE-TO-BE-USEFUL
use strict;
use warnings;
use version 0.77; our $VERSION = version->declare( v2.3.2 );
use lib q|./build_e7BB|;
use Build_iu8t;
=head1 OVERVIEW
B<Acme::FSM> implements something resembling Finite State Machine.
If you're looking for rigor then look somewhere else.
If you're looking for feature set then keep looking.
What B<A::F> does is mechanics with zero awarness of inputs and/or outputs
(any or both might be missing).
Implementation is definetely crude.
That stems from historical burden -- it's a fork!
If you're not demotivated yet then L<B<Acme::FSM>> has more.
Test-suite scores 1083 units.
=cut
my $engine = Build_iu8t->new(
dist_name => q|Acme-FSM|,
dist_version_from => q|lib/FSM.pm|,
dist_abstract => q|Pseudo Finite State Machine|,
dist_author => q|Eric Pozharski <wayside.ultimate@tuta.io>|,
license => q|open_source|,
meta_merge =>
{ resources =>
{ license => q|http://www.gnu.org/licenses/lgpl-3.0.txt| },
no_index => [ directory => q|build_e7BB| ] },
sign => 1,
requires =>
{ q|perl| => qv( v5.10.0 ),
q|version| => qv( v0.77 ),
q|Carp| => '' },
build_requires => { q|Test::More| => '' },
configure_requires => { q|Module::Build| => qv( v0.31 ) },
pm_files => { q|lib/FSM.pm| => q|lib/Acme/FSM.pm| },
add_to_cleanup => [qw| *.tmp *.bak foo.* skip_* MYMETA.* |] );
if( -e q|Changes.pod| ) {
$engine->add_build_element( q|buildq85v| );
$engine->buildq85v_files(
q|Changes.pod| => q|Changes|, q|Build.PL| => q|README| );
$engine->add_to_cleanup( q|Changes|, q|README| ) }
$engine->recursive_test_files( 1 );
$engine->create_build_script();
=head1 INSTALL
perl Build.PL
./Build build
./Build test
./Build install
B<A::F> doesn't need anything (even core modules).
However,
=over
=item B<perl>
I<v5.10>, but that's not verified yet.
B<(v2.3.6>)
It's complicated now.
=item B<version>
I<v0.77>.
That's definetely contradicts B<perl>.
I haven't dug through F<Changes> yet,
can't say when The Core has switched to I<v0.77> though.
=item C<Carp>
Whatever comes with B<perl>, hopefully.
=item B<Module::Build>
Whatever comes with B<perl>.
Cut off version to be determined yet.
=back
=cut
=head1 AVAILABILITY
# TODO:202207292136:whynot: Fill me in.
=cut
=head1 BUGS
( run in 0.676 second using v1.01-cache-2.11-cpan-39bf76dae61 )