blob: 3c83f5fdff5c34b25273f82aa3dc367aaf7d6c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  | 
require 'formula'
class FlexSdk < Formula
  url 'http://fpdownload.adobe.com/pub/flex/sdk/builds/flex4.6/flex_sdk_4.6.0.23201_mpl.zip'
  homepage 'http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK'
  md5 'ff7b362fff908b620573405510541ce0'
  def install
    libexec.install Dir['*']
  end
  def caveats; <<-EOS.undent
    To use the SDK you will need to:
    (a) add the bin folder to your $PATH:
      #{libexec}/bin
    (b) set $FLEX_HOME:
      export FLEX_HOME=#{libexec}
    (c) add the tasks jar to ANT:
      mkdir -p ~/.ant/lib
      ln -s #{libexec}/ant/lib/flexTasks.jar ~/.ant/lib
    EOS
  end
end
  |