36 lines
983 B
Ruby
36 lines
983 B
Ruby
require 'formula'
|
|
|
|
class AndroidSdk <Formula
|
|
url 'http://dl.google.com/android/android-sdk_r06-mac_86.zip'
|
|
homepage 'http://developer.android.com/index.html'
|
|
md5 'c92abf66a82c7a3f2b8493ebe025dd22'
|
|
version 'r6'
|
|
|
|
skip_clean 'add-ons'
|
|
skip_clean 'platforms'
|
|
skip_clean 'temp'
|
|
|
|
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; <<-EOS.undent
|
|
We agreed to the Android SDK License Agreement for you when we downloaded the
|
|
SDK. If this is unacceptable you should uninstall. You can read the license
|
|
at: http://developer.android.com/sdk/terms.html
|
|
|
|
Please add this line to your .bash_profile:
|
|
|
|
export ANDROID_SDK_ROOT=#{prefix}
|
|
EOS
|
|
end
|
|
end
|