homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz f5b099d53a youtube-dl 2013.07.25.2
Closes Homebrew/homebrew#21445.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-25 18:54:00 -05:00

18 lines
502 B
Ruby

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