homebrew-core/Formula/android-platform-tools.rb
Eli Young 4cffee20c5 android-platform-tools 25.0.3
Closes #9271.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-01-26 10:05:25 +01:00

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