homebrew-core/Formula/fb-adb.rb
2015-06-18 01:39:11 +01:00

41 lines
1.2 KiB
Ruby

class FbAdb < Formula
desc "Shell for Android devices that does much of what adb does and more"
homepage "https://github.com/facebook/fb-adb"
url "https://github.com/facebook/fb-adb/archive/1.4.4.tar.gz"
sha1 "0a49d4a1ed72d7e2311ca2ed0af2d4ae4d998b48"
bottle do
cellar :any
sha256 "ea7f04716e434f8788be5f00c321cf47aa0a0bfb988ccbe71a7772bcc8066794" => :yosemite
sha256 "77f99858579778af72ba838f4372c5dd2064da10bc59fad5f3d680d29e474ca8" => :mavericks
sha256 "1a70988d1082132abc28b6536ac2f4ae2b9cd13c1dc7f40f869b39023ce65e51" => :mountain_lion
end
depends_on "android-ndk" => :build
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "pkg-config" => :build
depends_on "android-sdk"
def install
ENV["ANDROID_NDK"] = Formula["android-ndk"].opt_prefix
system "./autogen.sh"
mkdir "build" do
system "../configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
end
def post_install
system "echo", "Y", "|", "android", "update", "sdk", "--no-ui", "--filter", "platform-tools"
end
test do
system "#{bin}/fb-adb", "devices"
system "#{bin}/fb-adb", "kill-server"
system "#{bin}/fb-adb", "start-server"
end
end