4cffee20c5
Closes #9271. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
25 lines
719 B
Ruby
25 lines
719 B
Ruby
class AndroidPlatformTools < Formula
|
|
desc "Tools for the Android SDK"
|
|
homepage "https://developer.android.com/studio/releases/platform-tools.html"
|
|
# the url is from:
|
|
# https://dl.google.com/android/repository/repository-12.xml
|
|
url "https://dl.google.com/android/repository/platform-tools_r25.0.3-darwin.zip"
|
|
version "25.0.3"
|
|
sha256 "640ce3236ba5eddc91bcd098b7e0c051b7ee3860339a14a4fe2d3caf7f6729cf"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :macos => :mountain_lion
|
|
|
|
conflicts_with "android-sdk",
|
|
:because => "the Android Platform-tools are part of the Android SDK"
|
|
|
|
def install
|
|
bin.install "adb", "fastboot"
|
|
end
|
|
|
|
test do
|
|
system bin/"fastboot --version"
|
|
system bin/"adb version"
|
|
end
|
|
end
|