homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz f3927d2948 youtube-dl 2013.12.11.2
Closes Homebrew/homebrew#25139.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-11 14:39:17 +00: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.12.11.2/youtube-dl-2013.12.11.2.tar.gz'
sha1 '04a29b9bd69f74fa276546fe997e89bf123aa222'
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