homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz 0942f48664 youtube-dl 2013.02.22
Closes Homebrew/homebrew#18050.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-24 07:54:33 -08:00

18 lines
516 B
Ruby

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