aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/svtplay-dl.rb
blob: 916d39415abeff713b6b74a99998afaf9dfc0cc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class SvtplayDl < Formula
  homepage 'https://github.com/spaam/svtplay-dl'
  url 'https://github.com/spaam/svtplay-dl/archive/0.9.2013.11.15.tar.gz'
  sha1 '62e5d3e9c3fbdf3f27c230500c8790c187b240d5'

  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