homebrew-core/Formula/openrtsp.rb
Eugeny Klementev 2106cd7824 openrtsp 2014_01_16
Closes Homebrew/homebrew#25946.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-16 10:06:19 +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.16.tar.gz'
sha1 'f2d88e51b872c7f1cde42190933f7990523bec63'
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