aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jboss-forge.rb
blob: c4cb65ca4a5269015a9521190de31ee5ffb400f2 (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.13.1.Final&e=zip&c=offline'
  version '2.13.1.Final'
  sha1 'def0a1b2bf043b5e25b9905c76cb1c9e070da638'

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