aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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