homebrew-core/Formula/openrtsp.rb
Eugeny Klementev f53facad7d openrtsp 2014.01.18
Closes Homebrew/homebrew#26013.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-18 13:35:09 +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.2014.01.18.tar.gz'
sha1 '3a076398589aad058081cb87e900a3b7908d696e'
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