-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathTrampolineHook.podspec
More file actions
27 lines (21 loc) · 851 Bytes
/
TrampolineHook.podspec
File metadata and controls
27 lines (21 loc) · 851 Bytes
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
Pod::Spec.new do |s|
s.name = "TrampolineHook"
s.version = "0.0.5"
s.summary = "A solution for centralized method redirection"
s.description = <<-DESC
Intercept any method implementation with a single method.
DESC
s.homepage = "https://github.com/SatanWoo/TrampolineHook"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "SatanWoo" => "" }
s.source = { :git => "https://github.com/SatanWoo/TrampolineHook.git", :tag => s.version.to_s }
s.source_files = "TrampolineHook/*.{h,m}",
"TrampolineHook/PageAllocator/*.{h,m}",
"TrampolineHook/arm64/*.{h,m}",
"TrampolineHook/arm64/THPage_arm64.s",
"TrampolineHook/arm64/THPageVar_arm64.s"
s.public_header_files = "Trampoline/THInterceptor.h"
s.static_framework = true
s.ios.deployment_target = "9.0"
s.requires_arc = true
end