aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/adobe-air-sdk.rb
blob: 5cee0cb1f0c46f51fbabf08a731aa14e8c31fb62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class AdobeAirSdk < Formula
  homepage 'http://www.adobe.com/products/air/sdk/'
  url 'http://airdownload.adobe.com/air/mac/download/3.7/AdobeAIRSDK.tbz2'
  sha1 '55b5d2675ef9cf9b7868635d5be100348d908134'

  def install
    libexec.install Dir['*']
    bin.write_exec_script libexec/'bin/adl'
    bin.write_exec_script libexec/'bin/adt'
  end
end