428a4d322e
Closes Homebrew/homebrew#15172. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
71 lines
2.4 KiB
Ruby
71 lines
2.4 KiB
Ruby
require 'formula'
|
|
|
|
class AndroidSdk < Formula
|
|
homepage 'http://developer.android.com/index.html'
|
|
url 'http://dl.google.com/android/android-sdk_r20.0.3-macosx.zip'
|
|
version 'r20.0.3'
|
|
sha1 'c02403c2e29952e6bbd632767b5c3cd3618c3e80'
|
|
|
|
# TODO docs and platform-tools
|
|
# See the long comment below for the associated problems
|
|
def self.var_dirs
|
|
%w[platforms samples temp add-ons sources system-images extras]
|
|
end
|
|
|
|
skip_clean var_dirs
|
|
|
|
def install
|
|
mv 'SDK Readme.txt', prefix/'README'
|
|
mv 'tools', prefix
|
|
|
|
%w[android apkbuilder ddms dmtracedump draw9patch etc1tool emulator
|
|
emulator-arm emulator-x86 hierarchyviewer hprof-conv lint mksdcard
|
|
monitor monkeyrunner traceview zipalign].each do |tool|
|
|
(bin/tool).write <<-EOS.undent
|
|
#!/bin/sh
|
|
TOOL="#{prefix}/tools/#{tool}"
|
|
exec "$TOOL" "$@"
|
|
EOS
|
|
end
|
|
|
|
# this is data that should be preserved across upgrades, but the Android
|
|
# SDK isn't too smart, so we still have to symlink it back into its tree.
|
|
AndroidSdk.var_dirs.each do |d|
|
|
dst = prefix/d
|
|
src = var/'lib/android-sdk'/d
|
|
src.mkpath unless src.directory?
|
|
dst.make_relative_symlink src
|
|
end
|
|
|
|
%w[aapt adb aidl dexdump dx fastboot llvm-rs-cc].each do |platform_tool|
|
|
(bin/platform_tool).write <<-EOS.undent
|
|
#!/bin/sh
|
|
PLATFORM_TOOL="#{prefix}/platform-tools/#{platform_tool}"
|
|
test -f "$PLATFORM_TOOL" && exec "$PLATFORM_TOOL" "$@"
|
|
echo Use the \\`android\\' tool to install the \\"Android SDK Platform-tools\\".
|
|
EOS
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Now run the `android' tool to install the actual SDK stuff.
|
|
|
|
The Android-SDK location for IDEs such as Eclipse, IntelliJ etc is:
|
|
#{prefix}
|
|
|
|
You will have to install the platform-tools and docs EVERY time this formula
|
|
updates. If you want to try and fix this then see the comment in this formula.
|
|
|
|
You may need to add the following to your .bashrc:
|
|
export ANDROID_SDK_ROOT=#{prefix}
|
|
EOS
|
|
end
|
|
|
|
# The `android' tool insists on deleting #{prefix}/platform-tools
|
|
# and then installing the new one. So it is impossible for us to redirect
|
|
# the SDK location to var so that the platform-tools don't have to be
|
|
# freshly installed EVERY DANG time the base SDK updates.
|
|
|
|
# Ideas: make android a script that calls the actual android tool, but after
|
|
# that tool exits it repairs the directory locations?
|
|
end
|