2012-07-05 07:42:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Openrtsp < Formula
|
|
|
|
homepage 'http://www.live555.com/openRTSP'
|
2014-04-09 06:15:01 +00:00
|
|
|
url 'http://www.live555.com/liveMedia/public/live.2014.03.25.tar.gz'
|
|
|
|
sha1 'cca0b497867e0dac4bf64647d24b6c5e53029270'
|
2012-07-05 07:42:27 +00:00
|
|
|
|
2014-04-09 06:19:29 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "21d6d05d03ecc8b563138bd35160d0aa90dcf29d" => :mavericks
|
|
|
|
sha1 "2bd52bbadecc80025ed6c51e48aac06d0ce85aef" => :mountain_lion
|
|
|
|
sha1 "714197f600b197b8e573a8c4983f8090fec30e0b" => :lion
|
|
|
|
end
|
|
|
|
|
2012-07-05 07:42:27 +00:00
|
|
|
option "32-bit"
|
|
|
|
|
|
|
|
def install
|
|
|
|
if build.build_32_bit? || !MacOS.prefer_64_bit?
|
2013-03-05 00:24:06 +00:00
|
|
|
ENV.m32
|
2012-07-05 07:42:27 +00:00
|
|
|
system "./genMakefiles macosx-32bit"
|
|
|
|
else
|
|
|
|
system "./genMakefiles macosx"
|
|
|
|
end
|
|
|
|
|
2013-03-05 00:24:06 +00:00
|
|
|
system "make", "PREFIX=#{prefix}", "install"
|
2012-07-05 07:42:27 +00:00
|
|
|
end
|
|
|
|
end
|