homebrew-core/Formula/flvstreamer.rb
Martin Klepsch 5181069f11 New formula flvstreamer
flvstreamer is an open source command-line RTMP client intended to
stream audio or video content from all types of flash or rtmp servers.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-22 21:18:46 -07:00

13 lines
376 B
Ruby

require 'formula'
class Flvstreamer <Formula
url 'http://download.savannah.gnu.org/releases-noredirect/flvstreamer/source/flvstreamer-2.1c1.tar.gz'
homepage 'http://www.nongnu.org/flvstreamer/'
md5 '4866387328ad89c957af90a2478e5556'
version '2.1c1'
def install
system "make posix"
bin.install [ 'flvstreamer', 'rtmpsrv', 'rtmpsuck', 'streams' ]
end
end