2012-07-05 07:42:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Openrtsp < Formula
|
|
|
|
homepage 'http://www.live555.com/openRTSP'
|
2013-01-26 16:25:47 +00:00
|
|
|
url 'http://www.live555.com/liveMedia/public/live.2013.01.25.tar.gz'
|
|
|
|
sha1 '5ea2868e090eb40e31a500f90f094e04c2f39e03'
|
2012-07-05 07:42:27 +00:00
|
|
|
|
|
|
|
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
|
2013-01-22 00:01:27 +00:00
|
|
|
bin.install 'openRTSP', 'vobStreamer', 'playSIP'
|
2012-07-05 07:42:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|