ideviceinstaller 1.1.0

Version bump.

Closes Homebrew/homebrew#34080.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Dominyk Tiller 2014-11-10 23:21:33 +00:00 committed by Jack Nagel
parent aac012edf5
commit 2b53bd6d55

View file

@ -1,27 +1,26 @@
require 'formula'
require "formula"
class Ideviceinstaller < Formula
homepage 'http://www.libimobiledevice.org/'
url 'http://www.libimobiledevice.org/downloads/ideviceinstaller-1.0.1.tar.bz2'
sha1 '7dd57f5d6d4466d8eca5d28fef3c22033b2af2da'
homepage "http://www.libimobiledevice.org/"
url "http://www.libimobiledevice.org/downloads/ideviceinstaller-1.1.0.tar.bz2"
sha1 "5e2c47b9e6ac6d610b7bfe5186c8e84536549ce4"
head do
url 'http://cgit.sukimashita.com/ideviceinstaller.git'
depends_on 'autoconf' => :build
depends_on 'automake' => :build
depends_on 'libtool' => :build
url "http://git.sukimashita.com/ideviceinstaller.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on 'pkg-config' => :build
depends_on 'libimobiledevice'
depends_on 'libzip'
depends_on "pkg-config" => :build
depends_on "libimobiledevice"
depends_on "libzip"
def install
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
system "make", "install"
end
test do