-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathKanna.podspec
More file actions
25 lines (23 loc) · 1.04 KB
/
Kanna.podspec
File metadata and controls
25 lines (23 loc) · 1.04 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
Pod::Spec.new do |s|
s.name = "Kanna"
s.version = "6.0.1"
s.summary = "Kanna is an XML/HTML parser for iOS/macOS/watchOS/tvOS and Linux."
s.homepage = "https://github.com/tid-kijyun/Kanna"
s.license = 'MIT'
s.author = { "Atsushi Kiwaki" => "tid.develop@gmail.com" }
s.source = { :git => "https://github.com/tid-kijyun/Kanna.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/_tid_'
s.swift_versions = ['5.0', '6.0']
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "10.0"
s.visionos.deployment_target = "1.0"
s.requires_arc = true
s.source_files = ['Sources/**/*.swift', 'Sources/**/*.h']
s.resource_bundles = {'kanna_privacy' => ['Sources/Kanna/PrivacyInfo.xcprivacy']}
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2',
'OTHER_LDFLAGS' => '-lxml2'
}
end