d6017dc81a
Closes Homebrew/homebrew#14067. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
275 B
Ruby
12 lines
275 B
Ruby
require 'formula'
|
|
|
|
class Jsdoc3 < Formula
|
|
homepage 'http://usejsdoc.org/'
|
|
url 'https://github.com/jsdoc3/jsdoc/tarball/v3.0.1'
|
|
sha1 '0c6ad2321d300a3eaa2e1d543f3fbf166ff1ce18'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.install_symlink libexec/'jsdoc'
|
|
end
|
|
end
|