aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRupert Bedford2011-04-23 11:04:29 +0100
committerAdam Vandenberg2011-06-08 21:24:08 -0700
commitb3e0b9249367433d164093af2fd7480e9eb88bf0 (patch)
tree5909c1e158091abecb6318909735fd31c6aeb16f /Library/Formula
parentdf909ce82e302b934e06df5ca16d59c951160050 (diff)
downloadhomebrew-b3e0b9249367433d164093af2fd7480e9eb88bf0.tar.bz2
ortp 6.3.2.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ortp.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ortp.rb b/Library/Formula/ortp.rb
new file mode 100644
index 000000000..920526c48
--- /dev/null
+++ b/Library/Formula/ortp.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Ortp < Formula
+ url 'http://download.savannah.gnu.org/releases/linphone/ortp/sources/ortp-0.16.5.tar.gz'
+ homepage 'http://www.linphone.org/eng/documentation/dev/ortp.html'
+ md5 '94546901d14b85f97342f4ecf39489b1'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end