0

i am using active perl 5.12 for 32 bit windows XP laptop.i want to install DFA::Simple or DFA::Command module to create a finite state machine.i tried installing from ppm repositories using ppm install [ppmx file] but it didn't install properly.please suggest me any other method which would be better to insrall or any other perl module which can be used to crate a simple state machine.

alily
  • 299
  • 2
  • 12
  • Are DFA::Simple and DFA::Command on CPAN? – Alexandr Ciornii Oct 27 '11 at 11:15
  • From the [Stack Overflow Perl FAQ](http://stackoverflow.com/questions/tagged/perl?sort=faq): [What's the easiest way to install a missing Perl module?](http://stackoverflow.com/questions/65865/whats-the-easiest-way-to-install-a-missing-perl-module) – daxim Oct 27 '11 at 12:56

2 Answers2

1

Download it. Then do from command prompt:

perl Makefile.pl.
dmake test
dmake install

DFA::Simple module was deleted from CPAN, but you should be able to find it on backpan.

P.S. You can download dmake on CPAN. You may use nmake instead of dmake.

Alexandr Ciornii
  • 7,346
  • 1
  • 25
  • 29
0

DFA::Simple is on github at https://github.com/gitpan/DFA-Simple.

Bill Ruppert
  • 8,956
  • 7
  • 27
  • 44