-
Notifications
You must be signed in to change notification settings - Fork 162
/
Fuzi.podspec
24 lines (20 loc) · 867 Bytes
/
Fuzi.podspec
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 = "Fuzi"
s.version = "3.1.3"
s.license = "MIT"
s.summary = "A fast & lightweight XML & HTML parser in Swift with XPath & CSS support"
s.homepage = "https://github.com/cezheng/Fuzi"
s.social_media_url = "https://twitter.com/AdamoCheng"
s.author = { "Ce Zheng" => "cezheng.cs@gmail.com" }
s.source = { :git => "https://github.com/cezheng/Fuzi.git", :tag => s.version }
# cocoadocs.org might not be working
# s.documentation_url = "http://cezheng.github.io/Fuzi"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source_files = "Sources/*.swift"
s.requires_arc = true
s.library = "xml2"
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
end