-
Notifications
You must be signed in to change notification settings - Fork 49
/
CPAProxy.podspec
25 lines (19 loc) · 985 Bytes
/
CPAProxy.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
Pod::Spec.new do |s|
s.name = "CPAProxy"
s.version = "2.0.0"
s.summary = "CPAProxy is a thin Objective-C wrapper around Tor."
s.author = "Claudiu-Vlad Ursache <[email protected]>"
s.homepage = "https://github.com/claudiuvursache/CPAProxy"
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.source = { :git => "https://github.com/claudiuvursache/CPAProxy.git", :branch => "master"}
s.prepare_command = <<-CMD
bash ./scripts/build-all.sh
CMD
s.module_name = 'CPAProxyPod'
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.14"
s.preserve_paths = 'LICENSE.md'
# s.ios.resource_bundles = {"CPAProxy" => ["CPAProxyDependencies/geoip", "CPAProxyDependencies/geoip6", "CPAProxyDependencies/torrc"]}
# s.osx.resource_bundles = {"CPAProxy" => ["CPAProxyDependencies/geoip", "CPAProxyDependencies/geoip6", "CPAProxyDependencies/torrc"]}
s.requires_arc = true
end