homebrew-core/Formula/openrtsp.rb
Stefan bede0bc56a openrtsp 2013.02.11
Closes Homebrew/homebrew#17957.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-19 20:14:15 -08:00

23 lines
508 B
Ruby

require 'formula'
class Openrtsp < Formula
homepage 'http://www.live555.com/openRTSP'
url 'http://www.live555.com/liveMedia/public/live.2013.02.11.tar.gz'
sha1 'ec4fe815191071c753db9956790b711ef71d1ec6'
option "32-bit"
def install
if build.build_32_bit? || !MacOS.prefer_64_bit?
system "./genMakefiles macosx-32bit"
else
system "./genMakefiles macosx"
end
system "make"
cd 'testProgs' do
bin.install 'openRTSP', 'vobStreamer', 'playSIP'
end
end
end