2011-04-23 10:04:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ortp < Formula
|
|
|
|
homepage 'http://www.linphone.org/eng/documentation/dev/ortp.html'
|
2012-07-30 16:12:13 +00:00
|
|
|
url 'http://download.savannah.gnu.org/releases/linphone/ortp/sources/ortp-0.20.0.tar.gz'
|
|
|
|
sha1 '9c66fb9512134869d4d2eb7766b6a8c5e4da1cc7'
|
2011-04-23 10:04:29 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|