blob: 590f452dcf7cad297479ee8fd59bafd945572ce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class YoutubeDl < Formula
homepage 'http://rg3.github.com/youtube-dl/'
url 'https://github.com/rg3/youtube-dl/tarball/2012.09.27/youtube-dl'
sha256 '45e88c1a5b81e633bddd43d5363e7ade92af2eeb534c37a5170f4b68d73605ea'
version '2012.09.27'
def install
system "make", "PREFIX=#{prefix}"
bin.install 'youtube-dl'
end
end
|