fd3e5b632a
Closes Homebrew/homebrew#38040. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
19 lines
446 B
Ruby
19 lines
446 B
Ruby
require "formula"
|
|
|
|
class SvtplayDl < Formula
|
|
homepage "https://github.com/spaam/svtplay-dl"
|
|
url "https://github.com/spaam/svtplay-dl/archive/0.10.2015.03.25.tar.gz"
|
|
sha1 "2de30ed457395c8eccb3e86261f8f9986672cdf8"
|
|
|
|
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.
|
|
EOS
|
|
end
|
|
end
|