Created
February 22, 2022 00:39
-
-
Save stefanschmidt/7a8d8126f6ded3f9b4f97a35b1240c6f to your computer and use it in GitHub Desktop.
Homebrew formula for installing youtube-dl from head
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class YoutubeDl < Formula | |
include Language::Python::Virtualenv | |
desc "Download YouTube videos from the command-line" | |
homepage "https://youtube-dl.org/" | |
url "https://files.pythonhosted.org/packages/01/4f/ab0d0806f4d818168d0ec833df14078c9d1ddddb5c42fa7bfb6f15ecbfa7/youtube_dl-2021.12.17.tar.gz" | |
sha256 "bc59e86c5d15d887ac590454511f08ce2c47698d5a82c27bfe27b5d814bbaed2" | |
license "Unlicense" | |
head "https://github.com/ytdl-org/youtube-dl.git" | |
bottle do | |
sha256 cellar: :any_skip_relocation, arm64_monterey: "79bc7ca875b43074c1a7097674b900835c5358e80d81a177b1eecf0e69b77a7a" | |
sha256 cellar: :any_skip_relocation, arm64_big_sur: "79bc7ca875b43074c1a7097674b900835c5358e80d81a177b1eecf0e69b77a7a" | |
sha256 cellar: :any_skip_relocation, monterey: "a8da6929ac2005f3bf5e004ccd1f860c6368cc49ea4d4846a0b902d21cc0cb7b" | |
sha256 cellar: :any_skip_relocation, big_sur: "a8da6929ac2005f3bf5e004ccd1f860c6368cc49ea4d4846a0b902d21cc0cb7b" | |
sha256 cellar: :any_skip_relocation, catalina: "a8da6929ac2005f3bf5e004ccd1f860c6368cc49ea4d4846a0b902d21cc0cb7b" | |
sha256 cellar: :any_skip_relocation, x86_64_linux: "1d96e5082a83cd8d333f72f40592ff577a4c4ccf4e654ddf2c3e38fccbb5c1f9" | |
end | |
depends_on "[email protected]" | |
# pandoc is needed to generate the man pages when installing | |
# the head version from git repository but not for the default build | |
head do | |
depends_on 'pandoc' => :build | |
end | |
def install | |
system "make" if build.head? | |
virtualenv_install_with_resources | |
man1.install_symlink libexec/"share/man/man1/youtube-dl.1" => "youtube-dl.1" | |
bash_completion.install libexec/"etc/bash_completion.d/youtube-dl.bash-completion" | |
fish_completion.install libexec/"etc/fish/completions/youtube-dl.fish" | |
end | |
test do | |
# commit history of homebrew-core repo | |
system "#{bin}/youtube-dl", "--simulate", "https://www.youtube.com/watch?v=pOtd1cbOP7k" | |
# homebrew playlist | |
system "#{bin}/youtube-dl", "--simulate", "--yes-playlist", "https://www.youtube.com/watch?v=pOtd1cbOP7k&list=PLMsZ739TZDoLj9u_nob8jBKSC-mZb0Nhj" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment