2018-08-23 10:06:47 +00:00
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = "TunnelKit"
|
2019-11-11 18:28:42 +00:00
|
|
|
s.version = "2.1.1"
|
2018-09-09 00:55:13 +00:00
|
|
|
s.summary = "Non-official OpenVPN client for Apple platforms."
|
2018-08-23 10:06:47 +00:00
|
|
|
|
2019-05-14 08:58:47 +00:00
|
|
|
s.homepage = "https://github.com/passepartoutvpn/tunnelkit"
|
2018-08-23 10:06:47 +00:00
|
|
|
s.license = { :type => "GPLv3", :file => "LICENSE" }
|
|
|
|
s.author = { "Davide De Rosa" => "keeshux@gmail.com" }
|
2019-05-14 08:58:47 +00:00
|
|
|
s.source = { :git => "https://github.com/passepartoutvpn/tunnelkit.git", :tag => "v#{s.version}" }
|
2019-03-30 19:17:02 +00:00
|
|
|
s.swift_version = "5.0"
|
2018-08-23 10:06:47 +00:00
|
|
|
|
2018-09-26 08:41:59 +00:00
|
|
|
s.ios.deployment_target = "11.0"
|
2018-08-23 10:06:47 +00:00
|
|
|
s.osx.deployment_target = "10.11"
|
|
|
|
|
2019-05-24 13:35:11 +00:00
|
|
|
s.default_subspecs = "Protocols/OpenVPN"
|
2019-03-19 13:34:49 +00:00
|
|
|
|
2018-08-23 10:06:47 +00:00
|
|
|
s.subspec "Core" do |p|
|
|
|
|
p.source_files = "TunnelKit/Sources/Core/**/*.{h,m,swift}"
|
|
|
|
p.private_header_files = "TunnelKit/Sources/Core/**/*.h"
|
|
|
|
p.preserve_paths = "TunnelKit/Sources/Core/*.modulemap"
|
2019-05-19 13:06:27 +00:00
|
|
|
p.pod_target_xcconfig = { "SWIFT_INCLUDE_PATHS" => "${PODS_TARGET_SRCROOT}/TunnelKit/Sources/Core",
|
2018-08-23 10:06:47 +00:00
|
|
|
"APPLICATION_EXTENSION_API_ONLY" => "YES" }
|
|
|
|
p.dependency "SwiftyBeaver"
|
2019-04-25 14:24:19 +00:00
|
|
|
p.libraries = "resolv"
|
2018-08-23 10:06:47 +00:00
|
|
|
end
|
|
|
|
|
2019-05-23 18:15:42 +00:00
|
|
|
s.subspec "AppExtension" do |p|
|
|
|
|
p.source_files = "TunnelKit/Sources/AppExtension/**/*.swift"
|
|
|
|
p.frameworks = "NetworkExtension"
|
|
|
|
p.pod_target_xcconfig = { "APPLICATION_EXTENSION_API_ONLY" => "YES" }
|
|
|
|
|
|
|
|
p.dependency "SwiftyBeaver"
|
|
|
|
p.dependency "TunnelKit/Core"
|
|
|
|
end
|
|
|
|
|
2019-05-24 13:35:11 +00:00
|
|
|
s.subspec "Protocols" do |t|
|
|
|
|
t.subspec "OpenVPN" do |p|
|
|
|
|
p.source_files = "TunnelKit/Sources/Protocols/OpenVPN/**/*.{h,m,swift}"
|
|
|
|
p.private_header_files = "TunnelKit/Sources/Protocols/OpenVPN/**/*.h"
|
|
|
|
p.preserve_paths = "TunnelKit/Sources/Protocols/OpenVPN/*.modulemap"
|
|
|
|
p.pod_target_xcconfig = { "OTHER_LDFLAGS" => "-framework openssl",
|
|
|
|
"SWIFT_INCLUDE_PATHS" => "${PODS_TARGET_SRCROOT}/TunnelKit/Sources/Protocols/OpenVPN",
|
|
|
|
"APPLICATION_EXTENSION_API_ONLY" => "YES" }
|
|
|
|
|
2019-11-01 23:20:59 +00:00
|
|
|
p.dependency "OpenSSL-Apple", "~> 1.1.1d.5a"
|
2019-05-24 13:35:11 +00:00
|
|
|
p.dependency "TunnelKit/Core"
|
|
|
|
p.dependency "TunnelKit/AppExtension"
|
|
|
|
end
|
2018-08-23 10:06:47 +00:00
|
|
|
end
|
2019-03-19 13:34:49 +00:00
|
|
|
|
2019-05-24 13:35:11 +00:00
|
|
|
s.subspec "Extra" do |t|
|
|
|
|
t.subspec "LZO" do |p|
|
|
|
|
p.source_files = "TunnelKit/Sources/Core/LZO.h",
|
|
|
|
"TunnelKit/Sources/Core/Errors.{h,m}",
|
2019-05-28 12:59:26 +00:00
|
|
|
"TunnelKit/Sources/Extra/LZO/*.{h,m}",
|
2019-05-24 13:35:11 +00:00
|
|
|
"TunnelKit/Sources/Extra/LZO/lib/*lzo*.{h,m,c}"
|
|
|
|
p.private_header_files = "TunnelKit/Sources/Core/LZO.h",
|
|
|
|
"TunnelKit/Sources/Core/Errors.h",
|
2019-05-28 12:59:26 +00:00
|
|
|
"TunnelKit/Sources/Extra/LZO/*.h",
|
2019-05-24 13:35:11 +00:00
|
|
|
"TunnelKit/Sources/Extra/LZO/lib/*lzo*.h"
|
|
|
|
p.pod_target_xcconfig = { "APPLICATION_EXTENSION_API_ONLY" => "YES" }
|
|
|
|
end
|
2019-03-19 13:34:49 +00:00
|
|
|
end
|
2018-08-23 10:06:47 +00:00
|
|
|
end
|