blob: 032a83de7783d052af2fb9b50dc49c826677c548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
require 'formula'
class LionOrNewer < Requirement
fatal true
satisfy MacOS.version >= :lion
def message
"ios-webkit-debug-proxy requires Mac OS X 10.7 (Lion) or newer."
end
end
class IosWebkitDebugProxy < Formula
homepage 'https://github.com/google/ios-webkit-debug-proxy'
url 'https://github.com/google/ios-webkit-debug-proxy/archive/1.0.tar.gz'
sha1 '2f05bdca351cb7730552a63b3825db858bf8fdd6'
depends_on LionOrNewer
depends_on :autoconf => :build
depends_on :automake => :build
depends_on 'libplist'
depends_on 'usbmuxd'
depends_on 'libimobiledevice'
# Patch from upstream to fix compiling with clang
# Can be removed in next release.
def patches; DATA; end
def install
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
__END__
diff --git a/src/ios_webkit_debug_proxy_main.c b/src/ios_webkit_debug_proxy_main.c
index e2f8f3c..c65180c 100644
--- a/src/ios_webkit_debug_proxy_main.c
+++ b/src/ios_webkit_debug_proxy_main.c
@@ -52,7 +52,7 @@ int main(int argc, char** argv) {
int ret = iwdpm_configure(self, argc, argv);
if (ret) {
exit(ret > 0 ? ret : 0);
- return;
+ return ret;
}
iwdpm_create_bridge(self);
|