aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Höppner2010-06-05 19:29:51 +0200
committerDavid Höppner2010-06-05 19:29:51 +0200
commitee1777613fd7fdd45cb87d64aa6ea12bbec59d03 (patch)
tree2f04c42d2191ed34f1f5083305ac8e3e68f9dc09
parent7453ad15b1f1aabe0f04c74f7ff44277e646a3e0 (diff)
downloadhomebrew-ee1777613fd7fdd45cb87d64aa6ea12bbec59d03.tar.bz2
New formula libosip
oSIP is an implementation of SIP. And SIP stands for the Session Initiation Protocol and is described by the rfc3261 (wich deprecates rfc2543). This library aims to provide multimedia and telecom software developers an easy and powerful interface to initiate and control SIP based sessions in their applications. SIP is a open standard replacement from IETF for H323.
-rw-r--r--Library/Formula/libosip.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libosip.rb b/Library/Formula/libosip.rb
new file mode 100644
index 000000000..62cb90a84
--- /dev/null
+++ b/Library/Formula/libosip.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Libosip <Formula
+ url 'http://ftp.gnu.org/gnu/osip/libosip2-3.3.0.tar.gz'
+ homepage 'http://www.gnu.org/software/osip/'
+ md5 '81493bb4d4ae6d55b71a0d4369339125'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end