mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-24 05:02:10 +00:00
Initial checkin of the POE::Filter::FSSocket module and fsconsole.pl which is a curses, multi-window console for freeswitch mod_event_socket. See http://search.cpan.org/~ptinsley/POE-Filter-FSSocket-0.04/lib/POE/Filter/FSSocket.pm for more info on the perl module.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3116 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use ExtUtils::MakeMaker;
|
||||
|
||||
WriteMakefile(
|
||||
NAME => 'POE::Filter::FSSocket',
|
||||
AUTHOR => 'Paul Tinsley <pdt@jackhammer.org>',
|
||||
ABSTRACT => 'POE filter for getting events out of FreeSWITCH',
|
||||
VERSION_FROM => 'lib/POE/Filter/FSSocket.pm',
|
||||
|
||||
PM => { 'lib/POE/Filter/FSSocket.pm' => '$(INST_LIBDIR)/FSSocket.pm' },
|
||||
PREREQ_PM => {
|
||||
POE => 0.3101,
|
||||
Test::More => 0,
|
||||
POE::Component::Client::TCP => 0,
|
||||
POE::Filter::Line => 0,
|
||||
},
|
||||
dist => {
|
||||
COMPRESS => 'gzip -9f',
|
||||
SUFFIX => 'gz',
|
||||
},
|
||||
);
|
||||
Reference in New Issue
Block a user