-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZDFfiHook.podspec
More file actions
37 lines (35 loc) · 1.32 KB
/
Copy pathZDFfiHook.podspec
File metadata and controls
37 lines (35 loc) · 1.32 KB
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
#
# Be sure to run `pod spec lint Kliao.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "ZDFfiHook"
spec.version = "0.0.2"
spec.summary = "hook Objective-C"
spec.description = <<-DESC
hook with libffi
DESC
spec.homepage = "https://github.com/faimin/ZDFfiHook"
spec.license = "MIT"
spec.author = { "faimin" => "fuxianchao@gmail.com" }
spec.requires_arc = true
spec.prefix_header_file = false
spec.ios.deployment_target = '10.0'
spec.osx.deployment_target = '10.12'
spec.source = {
:git => "https://github.com/faimin/ZDFfiHook.git",
:tag => "#{spec.version}"
}
spec.module_name = 'ZDFfiHook'
#spec.preserve_path = 'Source/module.modulemap', "Source/ZDFfiHookKit.h"
#spec.module_map = 'Source/module.modulemap'
spec.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES'
}
spec.source_files = "Source/*.{h,m}"
spec.public_header_files = "Source/{NSObject+ZDFfiHook,ZDFfiDefine,ZDFfiHook}.h"
spec.dependency "ZDLibffi", ">= 0.0.3", "!= 0.343.0"
end