forked from ursachec/CPAProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPAProxy.podspec
23 lines (20 loc) · 1.05 KB
/
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
Pod::Spec.new do |s|
s.name = "CPAProxy"
s.version = "1.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/ursachec/CPAProxy"
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.source = { :git => "https://github.com/chrisballinger/CPAProxy.git", :branch => "podspec"}
s.prepare_command = <<-CMD
bash ./scripts/build-all.sh
CMD
s.dependency 'CocoaAsyncSocket'
s.platform = :ios, "7.0"
s.source_files = "CPAProxy/*.{h,m}", "CPAProxyDependencies/tor_cpaproxy.h"
s.vendored_libraries = "CPAProxyDependencies/*.a"
s.resource_bundles = {"CPAProxy" => ["CPAProxyDependencies/geoip", "CPAProxyDependencies/geoip6", "CPAProxyDependencies/torrc"]}
s.library = 'crypto', 'curve25519_donna', 'event_core', 'event_extra', 'event_openssl',
'event_pthreads', 'event', 'or-crypto', 'or-event', 'or', 'ssl', 'tor', 'z'
s.requires_arc = true
end