homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz 95aee764d7 youtube-dl 2013.09.04
Closes Homebrew/homebrew#22312.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-09-04 16:28:09 -05:00

18 lines
498 B
Ruby

require 'formula'
class YoutubeDl < Formula
homepage 'http://rg3.github.io/youtube-dl/'
url 'http://youtube-dl.org/downloads/2013.09.04/youtube-dl-2013.09.04.tar.gz'
sha1 '33b0ad8af36bd9038b8a6d0e44f5493e0b763462'
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