blob: 716aa7c6be85143709dd5f706d378a0a7fc9e1fe (
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.8/AdobeAIRSDK.tbz2'
sha1 '30d090d13da218934da8e9327be99cd64bbaff6e'
def install
libexec.install Dir['*']
bin.write_exec_script libexec/'bin/adl'
bin.write_exec_script libexec/'bin/adt'
end
end
|