From 152f090a444bb76aabe7a109e90647a428ff3e81 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Mon, 16 Jun 2008 16:53:34 +0000 Subject: [PATCH] start of packaging git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8802 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- scripts/socket/FreeSWITCH/Client.pm | 2 +- scripts/socket/FreeSWITCH/Makefile.PL | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 scripts/socket/FreeSWITCH/Makefile.PL 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, + }, +);