homebrew-core/Formula/flvstreamer.rb

26 lines
926 B
Ruby

class Flvstreamer < Formula
desc "Stream audio and video from flash & RTMP Servers"
homepage "http://www.nongnu.org/flvstreamer/"
url "https://download.savannah.gnu.org/releases-noredirect/flvstreamer/source/flvstreamer-2.1c1.tar.gz"
sha256 "e90e24e13a48c57b1be01e41c9a7ec41f59953cdb862b50cf3e667429394d1ee"
bottle do
cellar :any_skip_relocation
revision 1
sha256 "5a4b649ce0f2c32bca4091f4867a37cca0e8ae2a292d4ef29aa2949530bdd651" => :el_capitan
sha256 "243e6ce44b77212ff84e3a739bf2b203c687bdcdd36b17ba24daa5335bf0a151" => :yosemite
sha256 "26ba92a604070dd27301456d120121618865108b33089191cd7ddcee78fbc465" => :mavericks
end
conflicts_with "rtmpdump", because: "both install 'rtmpsrv', 'rtmpsuck' and 'streams' binary"
def install
system "make", "posix"
bin.install "flvstreamer", "rtmpsrv", "rtmpsuck", "streams"
end
test do
system "#{bin}/flvstreamer", "-h"
end
end