forked from NordicSemiconductor/IOS-nRF-Mesh-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnRFMeshProvision.podspec
29 lines (27 loc) · 1.34 KB
/
nRFMeshProvision.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
#
# Be sure to run `pod lib lint nRFMeshProvision.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.coļcoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'nRFMeshProvision'
s.version = '3.2.0'
s.summary = 'A Bluetooth Mesh library'
s.description = <<-DESC
nRF Mesh is a Bluetooth mesh compliant library supporting features such as provisioning, configuration and control of Bluetooth mesh nodes.
DESC
s.homepage = 'https://github.com/NordicSemiconductor/IOS-nRF-Mesh-Library'
s.license = { :type => 'BSD-3-Clause', :file => 'LICENSE' }
s.author = { 'Aleksander Nowakowski' => 'aleksander.nowakowski@nordicsemi.no' }
s.source = { :git => 'https://github.com/NordicSemiconductor/IOS-nRF-Mesh-Library.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nordictweets'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.15'
s.static_framework = true
s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7']
s.source_files = 'nRFMeshProvision/Classes/**/*'
s.dependency 'CryptoSwift', '= 1.5.1'
s.frameworks = 'CoreBluetooth'
end