homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz 12a35fa71a youtube-dl 2013.06.21
Closes Homebrew/homebrew#20658.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-21 08:19:26 -07: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.06.21/youtube-dl-2013.06.21.tar.gz'
sha1 'ecb5e48d83b84f76d2d988036629fd08c7473249'
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