aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/android-platform-tools.rb
blob: a2c4a3df2cff1e08f965dd9d421955accfc3fcff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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