3ad9a0896f
The `brew audit` check complains about the older /tarball/ URL scheme. Update formulae to use the new /archive/ URL and update the SHA to match. Closes Homebrew/homebrew#18813. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
282 B
Ruby
12 lines
282 B
Ruby
require 'formula'
|
|
|
|
class Jsdoc3 < Formula
|
|
homepage 'http://usejsdoc.org/'
|
|
url 'https://github.com/jsdoc3/jsdoc/archive/v3.0.1.tar.gz'
|
|
sha1 '3d13978c93b1f7ad386667879b1def2cc616e94b'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.install_symlink libexec/'jsdoc'
|
|
end
|
|
end
|