homebrew-core/Formula/openrtsp.rb
Stefan d132615bc5 openrtsp 2013.12.21
Closes Homebrew/homebrew#25396.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-22 10:58:40 +00:00

20 lines
467 B
Ruby

require 'formula'
class Openrtsp < Formula
homepage 'http://www.live555.com/openRTSP'
url 'http://www.live555.com/liveMedia/public/live.2013.12.21.tar.gz'
sha1 '0afd1f0f8e59c199ca073aa121b8147c3844905d'
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