aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/adobe-air-sdk.rb
blob: 405daa95c099a4e6b3fa3258fa89db56e6ac35b6 (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.6/AdobeAIRSDK.tbz2'
  sha1 'c43b0b100a46b7f304a1b213664b3bf573721b85'

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