aaf8361822
Closes Homebrew/homebrew#26698. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
22 lines
603 B
Ruby
22 lines
603 B
Ruby
require 'formula'
|
|
|
|
class YoutubeDl < Formula
|
|
homepage 'http://rg3.github.io/youtube-dl/'
|
|
url 'https://yt-dl.org/downloads/2014.02.13/youtube-dl-2014.02.13.tar.gz'
|
|
sha1 '774223160452ef2a1a21fd6432872991eac74abc'
|
|
|
|
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
|
|
|
|
def test
|
|
system "#{bin}/youtube-dl", '--simulate', 'http://www.youtube.com/watch?v=he2a4xK8ctk'
|
|
end
|
|
end
|