From 91ec81ec00104e7194984c269ea92fb702bf5573 Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Mon, 10 Nov 2014 22:37:42 +0000 Subject: [PATCH] libusbmuxd 1.0.10 Version bump, and fixed HEAD. Closes Homebrew/homebrew#34076. Signed-off-by: Jack Nagel --- Formula/usbmuxd.rb | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Formula/usbmuxd.rb b/Formula/usbmuxd.rb index 789a405605..7adea8aff0 100644 --- a/Formula/usbmuxd.rb +++ b/Formula/usbmuxd.rb @@ -2,27 +2,33 @@ require "formula" class Usbmuxd < Formula homepage "http://www.libimobiledevice.org" - url "http://www.libimobiledevice.org/downloads/libusbmuxd-1.0.9.tar.bz2" - sha1 "7b05ee971ba277591b76040078df598e3710f6db" - - head "http://cgit.sukimashita.com/usbmuxd.git" + url "http://www.libimobiledevice.org/downloads/libusbmuxd-1.0.10.tar.bz2" + sha1 "9d4ce8ac058cfea66e6785d2bad5bb9c93681b16" bottle do cellar :any - revision 1 sha1 "df155e8fd46fb368a27359dfb1d3e38748e62520" => :yosemite sha1 "111014819a0d4351ddb074e917f399a74bcf1442" => :mavericks sha1 "f23f5dee72baff05e14f59e0b1adbc52e9d2918d" => :mountain_lion end + head do + url "http://git.sukimashita.com/libusbmuxd.git" + + depends_on "automake" => :build + depends_on "autoconf" => :build + depends_on "libtool" => :build + end + depends_on "pkg-config" => :build depends_on "libusb" depends_on "libplist" def install + system "./autogen.sh" if build.head? system "./configure", "--disable-dependency-tracking", "--disable-silent-rules", "--prefix=#{prefix}" - system "make install" + system "make", "install" end end