homebrew-core/Formula/android-sdk.rb

71 lines
2.2 KiB
Ruby

require 'formula'
class AndroidSdk < Formula
url 'http://dl.google.com/android/android-sdk_r16-macosx.zip'
homepage 'http://developer.android.com/index.html'
md5 'd1dc2b6f13eed5e3ce5cf26c4e4c47aa'
version 'r16'
def self.var_dirs
%w[platforms samples temp add-ons]
# TODO docs, google-market_licensing and platform-tools
# See the long comment below for the associated problems
end
skip_clean var_dirs
def install
mkdir bin
mv 'SDK Readme.txt', prefix/'README'
mv 'tools', prefix
%w[android apkbuilder ddms dmtracedump draw9patch emulator
emulator-arm emulator-x86 hierarchyviewer hprof-conv
lint mksdcard monkeyrunner sqlite3 traceview
zipalign].each do |tool|
(bin/tool).make_link(prefix/'tools'/tool)
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
(bin+'adb').write <<-EOS.undent
#!/bin/sh
ADB="#{prefix}/platform-tools/adb"
test -f "$ADB" && exec "$ADB" "$@"
echo Use the \\`android\\' tool to install adb.
EOS
(bin+'adb').chmod 0755
end
def caveats; <<-EOS.undent
Now run the `android' tool to install the actual SDK stuff.
NOTE you should tell Eclipse, IntelliJ etc. to use the Android-SDK found
here: #{prefix}
You will have to install the platform-tools 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