-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.crackedauth.podspec
34 lines (28 loc) · 1.31 KB
/
.crackedauth.podspec
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
Pod::Spec.new do |s|
s.name = "crackedauth"
s.version = "1.5.12"
s.summary = "Hook Objective-C blocks."
s.description = <<-DESC
Hook Objective-C blocks with libffi. It's a powerful AOP tool for blocks. crackedauth can run your code before/instead/after invoking a block. crackedauth can even notify you when a block dealloc. You can trace the whole lifecycle of a block using crackedauth!
DESC
s.homepage = "https://github.com/pxcs/crackedauth"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "pxcs" => "[email protected]" }
s.social_media_url = 'https://twitter.com/pxcs'
s.source = { :git => "https://github.com/pxcs/crackedauth.git", :tag => s.version.to_s }
s.source_files = "crackedauth/*.{h,m}"
s.public_header_files = "crackedauth/crackedauth.h", "crackedauth/BHToken.h", "crackedauth/BHInvocation.h"
s.static_framework = true
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.requires_arc = true
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
# s.tvos.deployment_target = "12.0"
# s.watchos.deployment_target = "4.0"
s.ios.vendored_frameworks = "libffi.xcframework"
s.osx.vendored_frameworks = "libffi.xcframework"
# s.tvos.vendored_frameworks = "libffi.xcframework"
# s.watchos.vendored_frameworks = "libffi.xcframework"
end