diff options
| author | Jayme Deffenbaugh | 2013-04-08 14:00:43 -0700 |
|---|---|---|
| committer | Jack Nagel | 2013-04-08 17:33:29 -0500 |
| commit | 3e1b7c2ddb7568f2e09807f4afd286b57843e121 (patch) | |
| tree | c45e0d4450796af6a23279723441d5cd1905dc43 /Library | |
| parent | d0a2ed907ddb750c519bb9f56d7055490f968edf (diff) | |
| download | homebrew-3e1b7c2ddb7568f2e09807f4afd286b57843e121.tar.bz2 | |
ideviceinstaller: add HEAD
Closes #19063.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ideviceinstaller.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Library/Formula/ideviceinstaller.rb b/Library/Formula/ideviceinstaller.rb index b931d434e..3b15c6a90 100644 --- a/Library/Formula/ideviceinstaller.rb +++ b/Library/Formula/ideviceinstaller.rb @@ -5,11 +5,21 @@ class Ideviceinstaller < Formula url 'http://www.libimobiledevice.org/downloads/ideviceinstaller-1.0.1.tar.bz2' sha1 '7dd57f5d6d4466d8eca5d28fef3c22033b2af2da' + head 'http://cgit.sukimashita.com/ideviceinstaller.git' + depends_on 'pkg-config' => :build depends_on 'libimobiledevice' depends_on 'libzip' + if build.head? + depends_on 'autoconf' => :build + depends_on 'automake' => :build + depends_on 'libtool' => :build + end + def install + system "./autogen.sh" if build.head? + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
