forked from cezheng/Fuzi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fuzi.podspec
28 lines (23 loc) · 1.04 KB
/
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
25
26
27
28
Pod::Spec.new do |s|
s.name = "Fuzi"
s.version = "2.0.1"
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" => "[email protected]" }
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.preserve_paths = "libxml2/*"
s.requires_arc = true
s.library = "xml2"
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
# Uncomment for `pob lib lint`
# s.prepare_command = 'mkdir -p $TMPDIR/CocoaPods/Lint/Pods/Fuzi && cp -r libxml2 $TMPDIR/CocoaPods/Lint/Pods/Fuzi/libxml2'
end