aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-03-04 18:24:06 -0600
committerJack Nagel2013-03-04 18:24:06 -0600
commit0a152e6c69cfebc2d375253f5cf297eddb2947a4 (patch)
tree1311e4c93a7d1c4f0e5cf1a9564203612af55e60 /Library/Formula
parent5369662bf301988f1a882a93a657cbb22d86aaed (diff)
downloadhomebrew-0a152e6c69cfebc2d375253f5cf297eddb2947a4.tar.bz2
openrtsp 2013.02.27
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/openrtsp.rb11
1 files changed, 4 insertions, 7 deletions
diff --git a/Library/Formula/openrtsp.rb b/Library/Formula/openrtsp.rb
index 48793b2ec..471da35a5 100644
--- a/Library/Formula/openrtsp.rb
+++ b/Library/Formula/openrtsp.rb
@@ -2,22 +2,19 @@ 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'
+ url 'http://www.live555.com/liveMedia/public/live.2013.02.27.tar.gz'
+ sha1 '5b89e9d532861fb389576b1dc69e8883c455a979'
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"
-
- cd 'testProgs' do
- bin.install 'openRTSP', 'vobStreamer', 'playSIP'
- end
+ system "make", "PREFIX=#{prefix}", "install"
end
end