homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz 5c45410983 youtube-dl 2014.01.20
Closes Homebrew/homebrew#26051.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-20 10:57:04 -08:00

22 lines
603 B
Ruby

require 'formula'
class YoutubeDl < Formula
homepage 'http://rg3.github.io/youtube-dl/'
url 'https://yt-dl.org/downloads/2014.01.20/youtube-dl-2014.01.20.tar.gz'
sha1 '73e98cc1788dd8c2fca8b253fdf5061c9bc1425a'
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