From: Michael Jerris Date: Mon, 16 Jun 2008 16:53:34 +0000 (+0000) Subject: start of packaging X-Git-Tag: v1.0.1~361 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=152f090a444bb76aabe7a109e90647a428ff3e81;p=thirdparty%2Ffreeswitch.git start of packaging git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8802 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/scripts/socket/FreeSWITCH/Client.pm b/scripts/socket/FreeSWITCH/Client.pm index 1b7b9221cf..d2c8a282a0 100644 --- a/scripts/socket/FreeSWITCH/Client.pm +++ b/scripts/socket/FreeSWITCH/Client.pm @@ -4,7 +4,7 @@ use IO::Socket::INET; use IO::Select; use Data::Dumper; - +$VERSION = "1.0"; sub init($;$) { my $proto = shift; diff --git a/scripts/socket/FreeSWITCH/Makefile.PL b/scripts/socket/FreeSWITCH/Makefile.PL new file mode 100644 index 0000000000..1b7b2066fe --- /dev/null +++ b/scripts/socket/FreeSWITCH/Makefile.PL @@ -0,0 +1,10 @@ +use ExtUtils::MakeMaker; +require 5.008; +WriteMakefile( + NAME => 'FreeSWITCH::Client', + VERSION_FROM => 'Client.pm', + PREREQ_PM => { + 'IO::Socket::INET' => 1.17, + 'IO::Select' => 1.17, + }, +);