50 lines
2.4 KiB
Ruby
50 lines
2.4 KiB
Ruby
class Libimobiledevice < Formula
|
|
desc "Library to communicate with iOS devices natively"
|
|
homepage "https://www.libimobiledevice.org/"
|
|
url "https://github.com/libimobiledevice/libimobiledevice/releases/download/1.3.0/libimobiledevice-1.3.0.tar.bz2"
|
|
sha256 "53f2640c6365cd9f302a6248f531822dc94a6cced3f17128d4479a77bd75b0f6"
|
|
license "LGPL-2.1"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_ventura: "011e027433848f23cd9d96aee9f46531f48f8462bd763fe799e09b36eeaa4851"
|
|
sha256 cellar: :any, arm64_monterey: "f3c97e567f59c4a8ab79f8a3d66a32d109fc9a7c22891589b998edb6a4e5ba28"
|
|
sha256 cellar: :any, arm64_big_sur: "41a64c9856f7845bb4c21bba4f42eb55c640301b59c032eb4db416db19ecf97d"
|
|
sha256 cellar: :any, ventura: "3db04118fec82077bd2b1a3e137f3a6a6037aeaa094865fc3d1187d7f795a308"
|
|
sha256 cellar: :any, monterey: "2cde67c8eef4e971ce74428a9162e9680d7a9ab542571f438602efe431d3a121"
|
|
sha256 cellar: :any, big_sur: "0fe21433f470130b972354d411d05f43ab37d82198565bb6b947734a95e98c5d"
|
|
sha256 cellar: :any, catalina: "eb7f28d86797461d5ef859d00629176e1ce3234790ef17b9ee3f9c9990a664e2"
|
|
sha256 cellar: :any, mojave: "5143eaf34011a22dd1951f10495a7568e77a2e862fb9f4dbae9bab2f784f926e"
|
|
sha256 cellar: :any, high_sierra: "072d224a0fa2a77bccde27eee39b65300a387613b41f07fc677108a7812ec003"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "d3a744d1aa95788a31c40fa0029e5f70631e81b040375bf92f18c845371a7f4a"
|
|
end
|
|
|
|
head do
|
|
url "https://git.libimobiledevice.org/libimobiledevice.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libplist"
|
|
depends_on "libtasn1"
|
|
depends_on "libusbmuxd"
|
|
depends_on "openssl@1.1"
|
|
|
|
def install
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
# As long as libplist builds without Cython
|
|
# bindings, libimobiledevice must as well.
|
|
"--without-cython",
|
|
"--enable-debug-code"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/idevicedate", "--help"
|
|
end
|
|
end
|