-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathOpenVPNXor.podspec
More file actions
32 lines (25 loc) · 1.47 KB
/
OpenVPNXor.podspec
File metadata and controls
32 lines (25 loc) · 1.47 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
#
# Be sure to run `pod lib lint OpenAIKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'OpenVPNXor'
s.version = '2.5'
s.summary = 'Library for simple connection via OpenVPN protocol with Xor patch.'
s.description = <<-DESC
OpenVPNXor is a library that allows to configure and establish VPN connection using OpenVPN protocol easily. It is based on the original openvpn3 library so it has every feature the library has.
The library is designed to use in conjunction with NetworkExtension framework and doesn't use any private Apple API. Compatible with iOS and macOS and also Swift friendly.
DESC
s.homepage = 'https://github.com/FuturraGroup/OpenVPNXor'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Sergey Zhuravel' => 'sergey.zhuravel@icloud.com' }
s.platform = :ios, "12.0"
s.source = { :http => 'https://github.com/FuturraGroup/OpenVPNXor/raw/main/releases/2.5/OpenVPNXor.framework.zip' }
s.ios.vendored_frameworks = 'OpenVPNXor.framework'
s.ios.deployment_target = '12.0'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end