aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jsdoc3.rb
blob: de3efeb84be0cd961773c367e6b3eb55a82c2cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Jsdoc3 < Formula
  homepage 'http://usejsdoc.org/'
  head 'https://github.com/jsdoc3/jsdoc.git', :branch => 'master'
  url 'https://github.com/jsdoc3/jsdoc/archive/v3.2.2.tar.gz'
  sha1 '69d284a65a9b2b06c6e6454acb30976b41dea7b6'

  conflicts_with 'jsdoc-toolkit', :because => 'both install jsdoc'

  def install
    libexec.install Dir['*']
    bin.install_symlink libexec/'jsdoc'
  end
end