diff options
| author | Dominyk Tiller | 2014-11-10 22:37:42 +0000 |
|---|---|---|
| committer | Jack Nagel | 2014-11-10 17:09:52 -0600 |
| commit | dc96ebac6dbdf22cc5ab8866b31126441ba0576b (patch) | |
| tree | d3603c2ce7f6e3c8b77cbd4e786377d7a04b0880 /Library/Formula | |
| parent | aa7991a5f92bf90927877fc115b6a1002456ed18 (diff) | |
| download | homebrew-dc96ebac6dbdf22cc5ab8866b31126441ba0576b.tar.bz2 | |
libusbmuxd 1.0.10
Version bump, and fixed HEAD.
Closes #34076.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/usbmuxd.rb | 18 |
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 |
