homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz b3022f2774 youtube-dl 2013.04.22
Closes Homebrew/homebrew#19365.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-22 18:51:35 -05:00

18 lines
515 B
Ruby

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