-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBluepeer.podspec
48 lines (43 loc) · 1.81 KB
/
Bluepeer.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# Be sure to run `pod lib lint filename.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Bluepeer"
s.version = "1.4.6"
s.summary = "Provides adhoc Bluetooth and wifi networking at high-level"
s.description = <<-DESC
Provides P2P (adhoc) Bluetooth and wifi networking at high-level. Uses low-level frameworks like HHServices to have more control than Multipeer and NSNetService.
DESC
s.homepage = "https://github.com/xaphod/Bluepeer"
s.license = 'MIT'
s.author = { "Tim Carr" => "[email protected]" }
s.source = { :git => "https://github.com/xaphod/Bluepeer.git", :tag => s.version.to_s }
s.platform = :ios, '11.0'
s.requires_arc = true
s.swift_version = '5.0'
s.subspec 'Core' do |core|
core.source_files = 'Core/*.{swift,m,h}'
core.resource_bundles = {
'Bluepeer' => ['Assets/*.{lproj,storyboard}']
}
core.dependency 'CocoaAsyncSocket', '>= 7.4.0'
core.dependency 'HHServices', '>= 2.0'
core.dependency 'xaphodObjCUtils', '>= 0.0.6'
core.dependency 'DataCompression', '< 4.0.0'
end
s.subspec 'HotPotatoNetwork' do |hpn|
hpn.source_files = 'HotPotato/*.{swift,m,h}'
hpn.dependency 'Bluepeer/Core'
hpn.dependency 'ObjectMapper', '~> 3.1'
end
#s.public_header_files = 'Pod/Classes/*.h'
#s.xcconfig = {'OTHER_LDFLAGS' => '-ObjC -all_load'}
#s.prefix_header_file = 'Pod/Classes/EOSFTPServer-Prefix.pch'
#s.pod_target_xcconfig = {'SWIFT_INCLUDE_PATHS' => '$(SRCROOT)/Bluepeer/Pod/**'}
#s.preserve_paths = 'Pod/Classes/module.modulemap'
end