0c5ebd9474
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>
13 lines
366 B
Ruby
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
|