2768e2b23d
Closes Homebrew/homebrew#22102. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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.8/AdobeAIRSDK.tbz2'
|
|
sha1 'f97e4cb2002c01a100b0654c8bb9237e3334486a'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.write_exec_script libexec/'bin/adl'
|
|
bin.write_exec_script libexec/'bin/adt'
|
|
end
|
|
end
|