aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/adobe-air-sdk.rb
blob: abcbbfc5da344471c1984ccdb82c3039395d9517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require "formula"

# Find downloads at:
# https://helpx.adobe.com/air/kb/archived-air-sdk-version.html
class AdobeAirSdk < Formula
  homepage "http://adobe.com/products/air/sdk"
  version "15.0.0.356"

  option "with-flex-support", "Do not download the new compiler with the SDK."

  if build.without? "flex-support"
    url "http://airdownload.adobe.com/air/mac/download/15.0/AIRSDK_Compiler.tbz2"
    sha1 "3e80a9daa5e029f4b9a79ded3faa517a649e90b4"
  else
    url "http://airdownload.adobe.com/air/mac/download/15.0/AdobeAIRSDK.tbz2"
    sha1 "47af192cebce5c08fcdde6bcc14aed5941a9ca85"
  end

  def install
    rm_f Dir["bin/*.bat"]
    libexec.install Dir["*"]
    bin.write_exec_script Dir["#{libexec}/bin/*"]
  end

  def caveats; <<-EOS.undent
    To set AIR_HOME:
      export AIR_HOME=#{libexec}
    EOS
  end
end