bb021f1e45
Closes Homebrew/homebrew#17789. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
63 lines
1.8 KiB
Ruby
63 lines
1.8 KiB
Ruby
require 'formula'
|
|
|
|
class ScmManagerCliClient < Formula
|
|
homepage 'http://www.scm-manager.org'
|
|
url 'http://maven.scm-manager.org/nexus/content/repositories/releases/sonia/scm/clients/scm-cli-client/1.28/scm-cli-client-1.28-jar-with-dependencies.jar'
|
|
version '1.28'
|
|
sha1 '136415843fab877529969b16ff3d5673de90815e'
|
|
end
|
|
|
|
class ScmManager < Formula
|
|
homepage 'http://www.scm-manager.org'
|
|
url 'http://maven.scm-manager.org/nexus/content/repositories/releases/sonia/scm/scm-server/1.28/scm-server-1.28-app.tar.gz'
|
|
version '1.28'
|
|
sha1 '1f02f7be9e5052d19cbda09782dfff86dff80979'
|
|
|
|
skip_clean 'libexec/var/log'
|
|
|
|
def install
|
|
rm_rf Dir['bin/*.bat']
|
|
|
|
libexec.install Dir['*']
|
|
|
|
(bin/'scm-server').write <<-EOS.undent
|
|
#!/bin/bash
|
|
BASEDIR="#{libexec}"
|
|
REPO="#{libexec}/lib"
|
|
export JAVA_HOME=$(/usr/libexec/java_home -v 1.6)
|
|
"#{libexec}/bin/scm-server" "$@"
|
|
EOS
|
|
chmod 0755, bin/'scm-server'
|
|
|
|
tools = libexec/'tools'
|
|
ScmManagerCliClient.new.brew { tools.install Dir['*'] }
|
|
|
|
scmCliClient = bin+'scm-cli-client'
|
|
scmCliClient.write <<-EOS.undent
|
|
#!/bin/bash
|
|
java -jar "#{tools}/scm-cli-client-#{version}-jar-with-dependencies.jar" "$@"
|
|
EOS
|
|
chmod 0755, scmCliClient
|
|
end
|
|
|
|
plist_options :manual => 'scm-server start'
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_prefix}/bin/scm-server</string>
|
|
<string>start</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
end
|