homebrew-core/Formula/youtube-dl.rb

19 lines
498 B
Ruby

require 'formula'
class YoutubeDl < Formula
homepage 'http://rg3.github.io/youtube-dl/'
url 'http://youtube-dl.org/downloads/2013.07.10/youtube-dl-2013.07.10.tar.gz'
sha1 '994e5cef88b5fa7c58f4bd24aae8ef5b188dfa8d'
def install
system "make", "youtube-dl", "PREFIX=#{prefix}"
bin.install 'youtube-dl'
man1.install 'youtube-dl.1'
bash_completion.install 'youtube-dl.bash-completion'
end
def caveats
"To use post-processing options, `brew install ffmpeg`."
end
end