blob: 53c7bab1e93c9373855dd51a767045a0e136da26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class AdobeAirSdk < Formula
homepage 'http://www.adobe.com/products/air/sdk/'
url 'http://airdownload.adobe.com/air/mac/download/3.1/AdobeAIRSDK.tbz2'
md5 'f2137a34888ce71574da87e0cc3b7b06'
version '3.1'
def startup_script name
(bin+name).write <<-EOS.undent
#!/bin/bash
exec "#{libexec}/bin/#{name}" "$@"
EOS
end
def install
libexec.install Dir['*']
startup_script("adl")
startup_script("adt")
end
end
|