2014-01-23 00:48:25 +00:00
|
|
|
class AndroidPlatformTools < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Tools for the Android SDK"
|
2015-03-10 14:55:05 +00:00
|
|
|
homepage "https://developer.android.com/sdk"
|
2014-01-23 00:48:25 +00:00
|
|
|
# the url is from:
|
2015-05-07 04:07:02 +00:00
|
|
|
# https://dl.google.com/android/repository/repository-10.xml
|
2015-08-17 19:51:26 +00:00
|
|
|
url "https://dl.google.com/android/repository/platform-tools_r23-macosx.zip"
|
|
|
|
version "23.0.0"
|
|
|
|
sha256 "a5ed48f56f784fcba35e3650c001fff49de75d3631d2fc2c83479a9ebaa92724"
|
2014-01-23 00:48:25 +00:00
|
|
|
|
2015-03-10 14:55:05 +00:00
|
|
|
conflicts_with "android-sdk",
|
2014-01-23 00:48:25 +00:00
|
|
|
:because => "the Android Platform-tools are part of the Android SDK"
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "adb", "fastboot"
|
|
|
|
end
|
|
|
|
end
|