start of packaging

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8802 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-06-16 16:53:34 +00:00
parent 7fc37d43c3
commit 152f090a44
2 changed files with 11 additions and 1 deletions

View File

@ -4,7 +4,7 @@ use IO::Socket::INET;
use IO::Select;
use Data::Dumper;
$VERSION = "1.0";
sub init($;$) {
my $proto = shift;

View File

@ -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,
},
);