blob: 9958b43223102c2f97c7dfcc478992020f413a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Rtmpdump <Formula
url 'http://rtmpdump.mplayerhq.hu/download/rtmpdump-2.2e.tar.gz'
version '2.2e'
homepage 'http://rtmpdump.mplayerhq.hu'
md5 '10681c2fe41194a97d508d0e6bbfe74f'
def install
system "make SYS=posix"
bin.install ['rtmpdump', 'rtmpgw', 'rtmpsrv', 'rtmpsuck']
end
end
|