homebrew-core/Formula/youtube-dl.rb

19 lines
498 B
Ruby
Raw Normal View History

require 'formula'
class YoutubeDl < Formula
2013-04-07 02:34:41 +00:00
homepage 'http://rg3.github.io/youtube-dl/'
url 'http://youtube-dl.org/downloads/2013.06.34/youtube-dl-2013.06.34.tar.gz'
sha1 '76a9a5f6a3d057a94c3acc73967f54f60b1ab7a3'
def install
system "make", "youtube-dl", "PREFIX=#{prefix}"
bin.install 'youtube-dl'
man1.install 'youtube-dl.1'
2013-05-03 18:03:31 +00:00
bash_completion.install 'youtube-dl.bash-completion'
end
def caveats
"To use post-processing options, `brew install ffmpeg`."
end
end