homebrew-core/Formula/jsdoc3.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
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>
2013-03-28 21:02:11 -07:00

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