blob: f68950ed182cdead8808c2d8bbb3edff02ccffe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class NicovideoDl < Formula
homepage 'http://sourceforge.jp/projects/nicovideo-dl/'
url 'http://dl.sourceforge.jp/nicovideo-dl/56304/nicovideo-dl-0.0.20120212.tar.gz'
sha1 '19f92570e01bd19a5a980e67985c0821e0af6ad5'
def install
bin.install 'nicovideo-dl'
end
def test
system "#{bin}/nicovideo-dl", "-v"
end
end
|