homebrew-core/Formula/openrtsp.rb
Mark A. Matienzo 7421b42c27 openrtsp 2014.02.17
Closes Homebrew/homebrew#26814.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-02-18 10:57:49 -06:00

20 lines
463 B
Ruby

require 'formula'
class Openrtsp < Formula
homepage 'http://www.live555.com/openRTSP'
url 'http://live555.com/liveMedia/public/live.2014.02.17.tar.gz'
sha1 '6a769a3541a6e94a56fd788843240a860d777bb1'
option "32-bit"
def install
if build.build_32_bit? || !MacOS.prefer_64_bit?
ENV.m32
system "./genMakefiles macosx-32bit"
else
system "./genMakefiles macosx"
end
system "make", "PREFIX=#{prefix}", "install"
end
end