forked from tid-kijyun/Kanna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKanna.podspec
23 lines (21 loc) · 955 Bytes
/
Kanna.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Kanna"
s.version = "4.0.4"
s.summary = "Kanna is an XML/HTML parser for iOS/macOS/watchOS/tvOS and Linux."
s.homepage = "https://github.com/AndroidGecko/Kanna"
s.license = 'MIT'
s.author = { "Atsushi Kiwaki" => "[email protected]" }
s.source = { :git => "https://github.com/AndroidGecko/Kanna.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/_tid_'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.requires_arc = true
s.preserve_path = 'Modules/*'
s.source_files = ['Sources/**/*.swift', 'Sources/**/*.h']
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2',
'SWIFT_INCLUDE_PATHS' => '$(SRCROOT)/Kanna/Modules'
}
end