tunnelkit/TunnelKit.podspec

65 lines
3.0 KiB
Plaintext
Raw Normal View History

Pod::Spec.new do |s|
s.name = "TunnelKit"
2019-12-22 15:29:22 +00:00
s.version = "2.2.2"
2018-09-09 00:55:13 +00:00
s.summary = "Non-official OpenVPN client for Apple platforms."
s.homepage = "https://github.com/passepartoutvpn/tunnelkit"
s.license = { :type => "GPLv3", :file => "LICENSE" }
s.author = { "Davide De Rosa" => "keeshux@gmail.com" }
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"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.11"
s.default_subspecs = "Protocols/OpenVPN"
2019-03-19 13:34:49 +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"
p.pod_target_xcconfig = { "SWIFT_INCLUDE_PATHS" => "${PODS_TARGET_SRCROOT}/TunnelKit/Sources/Core",
"APPLICATION_EXTENSION_API_ONLY" => "YES" }
p.dependency "SwiftyBeaver"
p.libraries = "resolv"
end
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
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" }
2020-04-19 00:21:48 +00:00
p.dependency "OpenSSL-Apple", "~> 1.1.1f.6"
p.dependency "TunnelKit/Core"
p.dependency "TunnelKit/AppExtension"
end
end
2019-03-19 13:34:49 +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}",
"TunnelKit/Sources/Extra/LZO/*.{h,m}",
"TunnelKit/Sources/Extra/LZO/lib/*lzo*.{h,m,c}"
p.private_header_files = "TunnelKit/Sources/Core/LZO.h",
"TunnelKit/Sources/Core/Errors.h",
"TunnelKit/Sources/Extra/LZO/*.h",
"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
end