aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ortp.rb
blob: 920526c48acae877b5a1706ff62ff5408b738baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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