7772bfc7de
Closes Homebrew/homebrew#29609.
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.2014.04.27.tar.gz"
|
|
sha1 "c1a36ef44bf284d3b48813656c1593c5d36145a1"
|
|
|
|
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
|