66 lines
2.7 KiB
Ruby
66 lines
2.7 KiB
Ruby
class YleDl < Formula
|
|
desc "Download Yle videos from the command-line"
|
|
homepage "https://aajanki.github.io/yle-dl/index-en.html"
|
|
url "https://github.com/aajanki/yle-dl/archive/2.14.tar.gz"
|
|
sha256 "f09d15670e3382f16d4bfb1ac113b59dfef72c86f54765d1df398a85b494a00c"
|
|
|
|
head "https://github.com/aajanki/yle-dl.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "3ce17bc91e68ffb3a6eb03e9be741ef315a06e35ca05b5f0cfc1e7c1a4e97ca7" => :sierra
|
|
sha256 "13dd47d49c9c746169d420d0533316e75804effe49b4d6d635f7c91a9bac9bfc" => :el_capitan
|
|
sha256 "d68663f700f59378d64cbbb4644f31e375d3a774d766974df1e6a5351dbea748" => :yosemite
|
|
end
|
|
|
|
depends_on "rtmpdump"
|
|
depends_on :python if MacOS.version <= :snow_leopard
|
|
depends_on "homebrew/php/php70-mcrypt" => :optional
|
|
depends_on "homebrew/php/php56-mcrypt" => :optional
|
|
depends_on "homebrew/php/php55-mcrypt" => :optional
|
|
depends_on "homebrew/php/php54-mcrypt" => :optional
|
|
depends_on "homebrew/php/php53-mcrypt" => :optional
|
|
|
|
resource "AdobeHDS.php" do
|
|
# NOTE: yle-dl always installs the HEAD version of AdobeHDS.php. We use a specific commit.
|
|
# Check if there are bugfixes at https://github.com/K-S-V/Scripts/commits/master/AdobeHDS.php
|
|
url "https://raw.githubusercontent.com/K-S-V/Scripts/3a9b748f957a921c5f846b3ebc7c99bb8255d2e0/AdobeHDS.php"
|
|
sha256 "45adf9b03dc991fcf6a44bb4cf62dd3777bf69647f1a98290e160a2bf89ebc2d"
|
|
end
|
|
|
|
resource "pycrypto" do
|
|
url "https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz"
|
|
sha256 "f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c"
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
|
|
resource("pycrypto").stage do
|
|
system "python", *Language::Python.setup_install_args(libexec/"vendor")
|
|
end
|
|
|
|
resource("AdobeHDS.php").stage(pkgshare)
|
|
system "make", "install", "SYS=darwin", "prefix=#{prefix}", "mandir=#{man}"
|
|
|
|
# change shebang to plain python (python2 is not guaranteed to exist)
|
|
inreplace bin/"yle-dl", "#!/usr/bin/env python2", "#!/usr/bin/env python"
|
|
|
|
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
yle-dl requires the mcrypt PHP module which you can either install manually or install
|
|
mcrypt from the PHP homebrew tap. You can also install yle-dl with one of optional dependencies
|
|
which to automatically tap the php tap and download mcrypt module for you.
|
|
|
|
brew info yle-dl
|
|
|
|
for further info.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_equal "Traileri: 3 minuuttia-2012-05-30T10:51:00+03:00\n",
|
|
shell_output("#{bin}/yle-dl --showtitle https://areena.yle.fi/1-1570236")
|
|
end
|
|
end
|