Formula for the CloudBees RUN@cloud SDK.

This replaces the stax-sdk formula. This SDK is the next iteration of the
stax-sdk, and it has been rebranded cloudbees-sdk due to stax merging with
CloudBees. See https://cloudbees.zendesk.com/entries/414109-cloudbees-sdk and
ttps://cloudbees.zendesk.com/entries/420548-stax-migration-faq for details.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Ivan Meredith 2011-01-31 17:48:59 +13:00 committed by Adam Vandenberg
parent 8a076fd2ad
commit 7d2bbf0692
3 changed files with 27 additions and 24 deletions

1
Aliases/stax-sdk Symbolic link
View File

@ -0,0 +1 @@
../Formula/cloudbees-sdk.rb

26
Formula/cloudbees-sdk.rb Normal file
View File

@ -0,0 +1,26 @@
require 'formula'
class CloudbeesSdk <Formula
url 'http://cloudbees-downloads.s3.amazonaws.com/sdk/cloudbees-sdk-0.5.0-dist.zip'
version '0.5.0'
homepage 'https://cloudbees.zendesk.com/entries/414109-cloudbees-sdk'
md5 'e3e2f68b687df9db3a7ceb46df49e000'
def shim_script target
<<-EOS.undent
#!/bin/bash
export BEES_HOME=#{libexec}
#{libexec}/#{target} $*
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

View File

@ -1,24 +0,0 @@
require 'formula'
class StaxSdk <Formula
url 'http://stax-downloads.s3.amazonaws.com/sdk/stax-sdk-0.3.8-dist.zip'
version '0.3.8'
homepage 'http://wiki.stax.net/w/index.php/SDK'
md5 'db14071f8c1628ed23bb66369fcca8bf'
def shim_script target
<<-EOS.undent
#!/bin/bash
export STAX_HOME=#{libexec}
#{libexec}/#{target} $*
EOS
end
def install
rm Dir['*.bat', '*.lnk']
libexec.install Dir['*']
(bin+'stax').write shim_script('stax')
(bin+'staxd').write shim_script('staxd')
end
end