eb39b5bb6a
Closes Homebrew/homebrew#17242.
23 lines
508 B
Ruby
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.01.21.tar.gz'
|
|
sha1 '51920c9e2be581df4bf72a036537317bebd5d27b'
|
|
|
|
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
|