forked from jrgerace/CDAKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CDAKit.podspec
executable file
·40 lines (36 loc) · 1.41 KB
/
CDAKit.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
#
# CDAKit
#
# CDAKit for iOS, the Open Source Clinical Document Architecture Library with HealthKit Connectivity
#
Pod::Spec.new do |s|
s.name = "CDAKit"
s.version = "1.2.0"
s.summary = "CDAKit for iOS, the Open Source Clinical Document Architecture Library with HealthKit Connectivity."
s.description = <<-DESC
Swift framework port of the the Ruby Health-Data-Standards GEM's C32 and C-CDA import and export functionality. Allows for bridging between CDA and HealthKit so you can integrate with an Electronic Medical Records system.
DESC
s.homepage = "https://github.com/ewhitley/CDAKit"
s.license = 'Apache 2'
s.authors = { "Eric Whitley" => "[email protected]" }
s.source = { :git => "https://github.com/ewhitley/CDAKit.git", :tag => s.version.to_s }
s.documentation_url = "http://ewhitley.github.io/CDAKit"
s.platform = :ios, '11.0'
s.ios.deployment_target = "11.0"
s.requires_arc = true
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'
}
s.source_files = 'CDAKit/**/*.swift'
s.resource_bundles = {
'CDAKit' => [
'CDAKit/**/*.mustache',
'CDAKit/**/CDAKitDefaultHealthKitTermMap.plist',
'CDAKit/**/CDAKitDefaultSampleTypeIdentifierSettings.plist'
]
}
s.frameworks = 'HealthKit'
s.dependency 'GRMustache.swift', '2.0.0'
s.dependency 'Fuzi', '~> 2.1.0'
s.dependency 'Try', '~> 2.1.0'
end