-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSPConnector.podspec
22 lines (19 loc) · 928 Bytes
/
SPConnector.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 = 'SPConnector'
s.version = '0.8'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A SharePoint services library for iOS and OS X.'
s.description = <<-DESC
SPConnector is designed to bring SharePoint whilst remaining lightweight.
It does not handle network connections itself and is designed to be flexible around this.
DESC
s.homepage = 'https://github.com/woodnathan/SPConnector/'
s.author = { 'Nathan Wood' => '[email protected]' }
s.source = { :git => 'https://github.com/woodnathan/SPConnector.git', :tag => s.version.to_s }
s.source_files = 'SPConnector'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.library = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
end