homebrew-core/Formula/ortp.rb

14 lines
426 B
Ruby
Raw Normal View History

2014-08-22 02:48:05 +00:00
require "formula"
class Ortp < Formula
2014-08-22 02:48:05 +00:00
homepage "http://www.linphone.org/eng/documentation/dev/ortp.html"
url "http://download.savannah.gnu.org/releases/linphone/ortp/sources/ortp-0.23.0.tar.gz"
sha1 "87a154295636652cc9ac7310dc02e0258db08790"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end