homebrew-core/Formula/youtube-dl.rb
Jaime Marquínez Ferrándiz 753aaac9d3 youtube-dl 2013.01.02
Closes Homebrew/homebrew#16866.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-03 07:45:30 -08:00

12 lines
328 B
Ruby

require 'formula'
class YoutubeDl < Formula
homepage 'http://rg3.github.com/youtube-dl/'
url 'http://youtube-dl.org/downloads/2013.01.02/youtube-dl-2013.01.02.tar.gz'
sha1 '30b4ece62adf26969926c370eaaa792229c3c195'
def install
system "make", "youtube-dl", "PREFIX=#{prefix}"
bin.install 'youtube-dl'
end
end