1b577bcf01
Closes Homebrew/homebrew#22599. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
507 B
Ruby
20 lines
507 B
Ruby
require 'formula'
|
|
|
|
class SvtplayDl < Formula
|
|
homepage 'https://github.com/spaam/svtplay-dl'
|
|
url 'https://github.com/spaam/svtplay-dl/archive/0.9.2013.09.03.tar.gz'
|
|
sha1 '55974c4f4728387a11a5d4957966fc8c8d18248e'
|
|
|
|
depends_on 'rtmpdump'
|
|
|
|
def install
|
|
bin.install 'svtplay-dl'
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
You need PyCrypto (https://www.dlitz.net/software/pycrypto/) to
|
|
download encrypted HLS streams.
|
|
You need PyAMF (http://www.pyamf.org/) for kanal5play.se.
|
|
EOS
|
|
end
|
|
end
|