homebrew-core/Formula/adobe-air-sdk.rb
Andy Li 0c5ebd9474 adobe-air-sdk: Update sha1
The sdk can be manually downloaded from:

  http://www.adobe.com/devnet/air/air-sdk-download.html

Closes Homebrew/homebrew#16660.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-12-20 13:19:27 -08:00

13 lines
366 B
Ruby

require 'formula'
class AdobeAirSdk < Formula
homepage 'http://www.adobe.com/products/air/sdk/'
url 'http://airdownload.adobe.com/air/mac/download/3.5/AdobeAIRSDK.tbz2'
sha1 'a23ffc39d836a3e6ffc260fccb724f1649389ae9'
def install
libexec.install Dir['*']
bin.write_exec_script libexec/'bin/adl'
bin.write_exec_script libexec/'bin/adt'
end
end