homebrew-core/Formula/android-platform-tools.rb
Jon Koops d92966ceef android-platform-tools 21.0.0
Updated android-platform-tools to v21.0.0

Apparently this version was released more recently and cannot be found in the XML feed from the comment. Might as well update to the latest version nonetheless.

Closes Homebrew/homebrew#34201.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-11-14 22:19:26 +00:00

17 lines
504 B
Ruby

require "formula"
class AndroidPlatformTools < Formula
homepage "http://developer.android.com/sdk"
# the url is from:
# http://dl-ssl.google.com/android/repository/repository-8.xml
url "http://dl-ssl.google.com/android/repository/platform-tools_r21-macosx.zip"
version '21.0.0'
sha1 "6675f9f583841972c5c5ef8d2c131e1209529fde"
conflicts_with 'android-sdk',
:because => "the Android Platform-tools are part of the Android SDK"
def install
bin.install "adb", "fastboot"
end
end