15869719ee
Closes Homebrew/homebrew#31677. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
477 B
Ruby
14 lines
477 B
Ruby
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.8.0.Final&e=zip&c=offline'
|
|
version '2.8.0.Final'
|
|
sha1 'c09dfeee882cf01b2b9af8248248caf2ecb910e8'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
libexec.install %w{ addons bin img lib logging.properties }
|
|
bin.install_symlink libexec/'bin/forge'
|
|
end
|
|
end
|