543f022d23
Closes Homebrew/homebrew#20737. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
18 lines
498 B
Ruby
18 lines
498 B
Ruby
require 'formula'
|
|
|
|
class YoutubeDl < Formula
|
|
homepage 'http://rg3.github.io/youtube-dl/'
|
|
url 'http://youtube-dl.org/downloads/2013.06.27/youtube-dl-2013.06.27.tar.gz'
|
|
sha1 '3e6e40aca82f6cf2c602809629572995dc0f1161'
|
|
|
|
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
|