2011-01-31 04:48:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class CloudbeesSdk < Formula
|
2012-02-11 23:36:59 +00:00
|
|
|
homepage 'http://wiki.cloudbees.com/bin/view/RUN/BeesSDK'
|
2012-03-15 07:06:22 +00:00
|
|
|
url 'http://cloudbees-downloads.s3.amazonaws.com/sdk/cloudbees-sdk-0.8.1-dist.zip'
|
|
|
|
md5 '82cf3a8c002bebcf5d123a3803bba5d8'
|
2011-01-31 04:48:59 +00:00
|
|
|
|
|
|
|
def shim_script target
|
|
|
|
<<-EOS.undent
|
|
|
|
#!/bin/bash
|
|
|
|
export BEES_HOME=#{libexec}
|
2012-02-11 23:36:59 +00:00
|
|
|
"#{libexec}/#{target}" "$@"
|
2011-01-31 04:48:59 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
rm Dir['*.bat', '*.lnk']
|
|
|
|
libexec.install Dir['*']
|
|
|
|
|
|
|
|
(bin+'bees').write shim_script('bees')
|
|
|
|
(bin+'beesd').write shim_script('beesd')
|
|
|
|
(bin+'stax').write shim_script('stax')
|
|
|
|
(bin+'staxd').write shim_script('staxd')
|
|
|
|
end
|
|
|
|
end
|