libimobiledevice 1.1.6
This commit is contained in:
parent
a3d99ba1e5
commit
3a275a75cf
1 changed files with 11 additions and 14 deletions
|
@ -1,24 +1,21 @@
|
||||||
require 'formula'
|
require "formula"
|
||||||
|
|
||||||
class Libimobiledevice < Formula
|
class Libimobiledevice < Formula
|
||||||
homepage 'http://www.libimobiledevice.org/'
|
homepage "http://www.libimobiledevice.org/"
|
||||||
url 'http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.5.tar.bz2'
|
url "http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.6.tar.bz2"
|
||||||
sha1 '1c2ce186787fe661d2ef5a1be170ddbe5f85db77'
|
sha1 "3016bf1241bc5a77a621c49d82d71bb8f32905e4"
|
||||||
revision 2
|
|
||||||
|
|
||||||
head 'http://cgit.sukimashita.com/libimobiledevice.git'
|
head "http://cgit.sukimashita.com/libimobiledevice.git"
|
||||||
|
|
||||||
depends_on 'pkg-config' => :build
|
depends_on "pkg-config" => :build
|
||||||
depends_on 'libtasn1'
|
depends_on "libtasn1"
|
||||||
depends_on 'libplist'
|
depends_on "libplist"
|
||||||
depends_on 'usbmuxd'
|
depends_on "usbmuxd"
|
||||||
depends_on 'gnutls'
|
depends_on "openssl"
|
||||||
depends_on 'libgcrypt'
|
|
||||||
|
|
||||||
def install
|
def install
|
||||||
ENV.append_to_cflags "-std=gnu89" if ENV.compiler == :clang
|
|
||||||
|
|
||||||
system "./configure", "--disable-dependency-tracking",
|
system "./configure", "--disable-dependency-tracking",
|
||||||
|
"--disable-silent-rules",
|
||||||
"--prefix=#{prefix}",
|
"--prefix=#{prefix}",
|
||||||
# As long as libplist builds without Cython
|
# As long as libplist builds without Cython
|
||||||
# bindings, libimobiledevice must as well.
|
# bindings, libimobiledevice must as well.
|
||||||
|
|
Loading…
Reference in a new issue