homebrew-core/Formula/android-platform-tools.rb
Ahmed Kamal e3eabca01d android-platform-tools 22.0
Closes Homebrew/homebrew#37633.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-03-12 12:18:52 +00:00

15 lines
506 B
Ruby

class AndroidPlatformTools < Formula
homepage "https://developer.android.com/sdk"
# the url is from:
# https://dl.google.com/android/repository/repository-8.xml
url "https://dl.google.com/android/repository/platform-tools_r22-macosx.zip"
version "22.0.0"
sha256 "c06721ff66a1a3f70e489325f06474e28cd0efd5352f097ee2ff58167b4f6564"
conflicts_with "android-sdk",
:because => "the Android Platform-tools are part of the Android SDK"
def install
bin.install "adb", "fastboot"
end
end