homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz 4acb4b50b6 youtube-dl 2013.03.29
Closes Homebrew/homebrew#18829.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:32 -07: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.03.29/youtube-dl-2013.03.29.tar.gz'
sha1 '7dd68fcee929296199c5a38460182880012e3cd6'
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