homebrew-core/Formula/nicovideo-dl.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

15 lines
353 B
Ruby

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
test do
system "#{bin}/nicovideo-dl", "-v"
end
end