3b81dc6a1b
Closes Homebrew/homebrew#19134. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
18 lines
515 B
Ruby
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.11/youtube-dl-2013.04.11.tar.gz'
|
|
sha1 '6c5119cf3a80ab0dbba63ea63ab6a9dba8b5e3a2'
|
|
|
|
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
|