aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jboss-forge.rb
blob: 86e689f47a905391f5c0350f504a1a6fe78f5e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class JbossForge < Formula
  homepage 'http://forge.jboss.org/'
  url 'https://repository.jboss.org/nexus/service/local/artifact/maven/redirect?r=releases&g=org.jboss.forge&a=forge-distribution&v=2.14.0.Final&e=zip&c=offline'
  version '2.14.0.Final'
  sha1 'bef394531988406eb5a94f478069cc2b89c875dd'

  def install
    rm_f Dir["bin/*.bat"]
    libexec.install %w{ addons bin img lib logging.properties }
    bin.install_symlink libexec/'bin/forge'
  end
end