modified: openstmerge.py
[GalaxyCodeBases.git] / etc / Homebrew / idevicelocation.rb
blob95aa6d0c54d9ace8204317bb0ef2c9c99a1643f3
1 class Idevicelocation < Formula
2   desc "Tool to set the location on iOS Devices"
3   homepage "https://github.com/JonGabilondoAngulo/idevicelocation"
4   url "https://github.com/galaxy001/idevicelocation/archive/v101.tar.gz"
5   sha256 "cfaf45a431d872676c688389bd25a6399da210c243971203b32e5bcb7de6b641"
6   license "LGPL-2.1"
7   # See also `libimobiledevice/1.3.0/bin/idevicesetlocation`
9   depends_on "autoconf"
10   depends_on "automake"
11   depends_on "libtool"
12   depends_on "pkg-config"
13   depends_on "libplist"
14   depends_on "libimobiledevice"
15   depends_on "libzip"
16   depends_on "openssl@1.1"
18   def install
19     system "./autogen.sh", "--disable-dependency-tracking",
20                            "--disable-silent-rules",
21                            "--prefix=#{prefix}"
22     system "make", "install"
23   end
25   test do
26     system "#{bin}/idevicelocation", "--help"
27   end
28 end