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

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

  def install
    rm_f Dir["bin/*.bat"]
    libexec.install %w{ bin modules jboss-modules.jar }
    bin.install_symlink libexec/'bin/forge'
  end
end