-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathKFEpubKit.podspec
More file actions
18 lines (18 loc) · 871 Bytes
/
KFEpubKit.podspec
File metadata and controls
18 lines (18 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'KFEpubKit'
s.version = '0.0.6'
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.summary = 'An Objective-C epub extracting and parsing framework for OSX and iOS.'
s.homepage = 'https://pods.kf-interactive.com'
s.author = { 'Rico Becker' => 'rico.becker@kf-interactive.com' }
s.source = { :git => 'https://github.com/ricobeck/KFEpubKit.git', :tag => s.version.to_s }
s.framework = 'Foundation'
s.requires_arc = true
s.ios.deployment_target = "5.1"
s.osx.deployment_target = "10.7"
s.source_files = 'KFEpubKit/Sources/*.{h,m}', 'KFEpubKit/LICENSE.txt'
s.dependency 'SSZipArchive'
s.dependency 'KissXML'
s.library = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(SDKROOT)/usr/include/libxml2"' }
end