forked from readium/r2-shared-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR2Shared.podspec
24 lines (21 loc) · 896 Bytes
/
R2Shared.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 = 'R2Shared'
s.version = '2.2.0'
s.license = 'BSD 3-Clause License'
s.summary = 'R2 Shared'
s.homepage = 'http://readium.github.io'
s.author = { "Readium" => "[email protected]" }
s.source = { :git => 'https://github.com/readium/r2-shared-swift.git', :tag => '2.2.0' }
s.exclude_files = ["**/Info*.plist", "r2-shared-swift/Toolkit/Archive/ZIPFoundation.swift"]
s.requires_arc = true
s.resources = ['r2-shared-swift/Resources/**']
s.source_files = "r2-shared-swift/**/*.{m,h,swift}"
s.platform = :ios
s.ios.deployment_target = "10.0"
s.frameworks = 'CoreServices'
s.libraries = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.dependency 'Fuzi', '~> 3.1.3'
s.dependency 'exera/Minizip', '~> 1.4.0'
s.dependency 'SwiftSoup', '~> 2.3'
end