tunnelkit/TunnelKit.podspec

34 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

Pod::Spec.new do |s|
s.name = "TunnelKit"
2018-11-05 14:48:11 +00:00
s.version = "1.3.1"
2018-09-09 00:55:13 +00:00
s.summary = "Non-official OpenVPN client for Apple platforms."
2018-09-07 22:11:08 +00:00
s.homepage = "https://github.com/keeshux/tunnelkit"
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"
s.ios.deployment_target = "11.0"
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