2010-07-25 02:23:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2012-09-28 09:45:57 +00:00
|
|
|
class YoutubeDl < Formula
|
2013-04-07 02:34:41 +00:00
|
|
|
homepage 'http://rg3.github.io/youtube-dl/'
|
2013-06-27 12:22:35 +00:00
|
|
|
url 'http://youtube-dl.org/downloads/2013.06.34/youtube-dl-2013.06.34.tar.gz'
|
|
|
|
sha1 '76a9a5f6a3d057a94c3acc73967f54f60b1ab7a3'
|
2012-09-28 09:45:57 +00:00
|
|
|
|
|
|
|
def install
|
2013-06-08 17:27:59 +00:00
|
|
|
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'
|
2012-09-28 09:45:57 +00:00
|
|
|
end
|
2013-01-24 12:54:40 +00:00
|
|
|
|
|
|
|
def caveats
|
|
|
|
"To use post-processing options, `brew install ffmpeg`."
|
|
|
|
end
|
2010-07-25 02:23:08 +00:00
|
|
|
end
|