2018-08-23 10:06:47 +00:00
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = "TunnelKit"
|
2018-11-10 09:14:33 +00:00
|
|
|
s.version = "1.4.0"
|
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
|
|
|
|
2018-09-07 22:11:08 +00:00
|
|
|
s.homepage = "https://github.com/keeshux/tunnelkit"
|
2018-08-23 10:06:47 +00:00
|
|
|
s.license = { :type => "GPLv3", :file => "LICENSE" }
|
|
|
|
s.author = { "Davide De Rosa" => "keeshux@gmail.com" }
|
2018-09-07 22:11:08 +00:00
|
|
|
s.source = { :git => "https://github.com/keeshux/tunnelkit.git", :tag => "v#{s.version}" }
|
2018-09-24 12:41:35 +00:00
|
|
|
s.swift_version = "4.2"
|
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"
|
|
|
|
|
|
|
|
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.dependency "OpenSSL-Apple", "~> 1.1.0h"
|
|
|
|
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 "TunnelKit/Core"
|
|
|
|
p.dependency "SwiftyBeaver"
|
|
|
|
end
|
|
|
|
end
|