aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/android-sdk.rb
blob: 6f7745ffef1f0ba9b2054be2fa48346496b8182d (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
27
28
29
30
31
32
33
require 'formula'

class AndroidSdk <Formula
  url 'http://dl.google.com/android/android-sdk_r04-mac_86.zip'
  homepage 'http://developer.android.com/index.html'
  md5 'b08512765aa9b0369bb9b8fecdf763e3'
  version 'r4'

  skip_clean 'add-ons'
  skip_clean 'platforms'
  skip_clean 'temp'

  aka :android

  def install
    mkdir %w[temp docs] << bin

    mv 'SDK Readme.txt', 'README'
    prefix.install Dir['*']

    %w[adb android apkbuilder ddms dmtracedump draw9patch emulator 
           hierarchyviewer hprof-conv layoutopt mksdcard traceview
           zipalign].each do |tool|
      (bin+tool).make_link(prefix+'tools'+tool)
    end
  end

  def caveats; "\
We agreed to the Android SDK License Agreement for you by downloading the SDK.
If this is unacceptable you should uninstall.
You can read the license at: http://developer.android.com/sdk/terms.html"
  end
end