a6187bdc38
Closes Homebrew/homebrew#17342. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
18 lines
516 B
Ruby
18 lines
516 B
Ruby
require 'formula'
|
|
|
|
class YoutubeDl < Formula
|
|
homepage 'http://rg3.github.com/youtube-dl/'
|
|
url 'http://youtube-dl.org/downloads/2013.01.28/youtube-dl-2013.01.28.tar.gz'
|
|
sha1 '91b0ead8ab2136e36c920a7a34f9085a792675f0'
|
|
|
|
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
|