forked from swisspol/GCDWebServer
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathReadiumGCDWebServer.podspec
29 lines (25 loc) · 1.03 KB
/
ReadiumGCDWebServer.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
29
# http://guides.cocoapods.org/syntax/podspec.html
# http://guides.cocoapods.org/making/getting-setup-with-trunk.html
# $ sudo gem update cocoapods
# (optional) $ pod trunk register {email} {name} --description={computer}
# $ pod trunk --verbose push
# DELETE THIS SECTION BEFORE PROCEEDING!
Pod::Spec.new do |s|
s.name = 'ReadiumGCDWebServer'
s.version = '4.0.1'
s.author = { 'Pierre-Olivier Latour' => 'info@pol-online.net' }
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.homepage = 'https://github.com/readium/GCDWebServer'
s.summary = 'Lightweight GCD based HTTP server for OS X & iOS'
s.source = { :git => 'https://github.com/readium/GCDWebServer.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |cs|
cs.source_files = 'GCDWebServer/**/*.{h,m}'
cs.exclude_files = 'GCDWebServer/include/*'
cs.requires_arc = true
cs.ios.library = 'z'
cs.ios.frameworks = 'MobileCoreServices', 'CFNetwork'
end
end