aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jboss-forge.rb
blob: ff4ba7ae0b426cec42957a6a9f026039ad3a69c9 (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.3.1.Final&e=zip'
  version '1.3.1.Final'
  sha1 'e693734821045e4c5dd9872bf8e36bfbd2891130'

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