3d49996940
Closes Homebrew/homebrew#19076. Signed-off-by: Jack Nagel <jacknagel@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.7/AdobeAIRSDK.tbz2'
|
|
sha1 'adde88ee22315792d945d05d5eb83eea8b7a808a'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.write_exec_script libexec/'bin/adl'
|
|
bin.write_exec_script libexec/'bin/adt'
|
|
end
|
|
end
|