aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/usbmuxd.rb18
1 files changed, 12 insertions, 6 deletions
diff --git a/Library/Formula/usbmuxd.rb b/Library/Formula/usbmuxd.rb
index 789a40560..7adea8aff 100644
--- a/Library/Formula/usbmuxd.rb
+++ b/Library/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