6afea1d353
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
349 B
Ruby
14 lines
349 B
Ruby
require 'formula'
|
|
|
|
class Jsdoc3 < Formula
|
|
homepage 'http://usejsdoc.org/'
|
|
url 'https://github.com/jsdoc3/jsdoc/archive/v3.2.1.tar.gz'
|
|
sha1 '9475bdef742dbdee96e002f000a2d99e05253093'
|
|
|
|
head 'https://github.com/jsdoc3/jsdoc.git', :branch => 'master'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.install_symlink libexec/'jsdoc'
|
|
end
|
|
end
|