blob: 50400838ae650e48a171641f1f23c6f730b66d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|