aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rtmpdump.rb
blob: d66095c397fcc18a785a8f1d0f53c3cf20215c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Rtmpdump <Formula
  url 'http://rtmpdump.mplayerhq.hu/download/rtmpdump-2.2b.tar.gz'
  homepage 'http://rtmpdump.mplayerhq.hu'
  md5 '1faea785e8818fe0ddf2543e05a4b801'

  def install
    system "make posix"
    bin.install ['rtmpdump', 'rtmpgw', 'rtmpsrv', 'rtmpsuck']
  end
end