blob: c8034fa5f31eb732a485a05c5c33c38ff37af231 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Jsdoc3 < Formula
homepage 'http://usejsdoc.org/'
url 'https://github.com/jsdoc3/jsdoc/archive/v3.2.0.tar.gz'
sha1 'ac682fd15e6863233835c8969be9e4212dc2e4eb'
head 'https://github.com/jsdoc3/jsdoc.git', :branch => 'master'
def install
libexec.install Dir['*']
bin.install_symlink libexec/'jsdoc'
end
end
|