]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
start of packaging
authorMichael Jerris <mike@jerris.com>
Mon, 16 Jun 2008 16:53:34 +0000 (16:53 +0000)
committerMichael Jerris <mike@jerris.com>
Mon, 16 Jun 2008 16:53:34 +0000 (16:53 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8802 d0543943-73ff-0310-b7d9-9358b9ac24b2

scripts/socket/FreeSWITCH/Client.pm
scripts/socket/FreeSWITCH/Makefile.PL [new file with mode: 0644]

index 1b7b9221cfc2d2491e997421c6249c0039690e5f..d2c8a282a0b2c9f199f60344ac003e913096aba4 100644 (file)
@@ -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 (file)
index 0000000..1b7b206
--- /dev/null
@@ -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,
+       },
+);