-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCapacitorFreerasp.podspec
More file actions
23 lines (21 loc) · 943 Bytes
/
Copy pathCapacitorFreerasp.podspec
File metadata and controls
23 lines (21 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'CapacitorFreerasp'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.homepage = package['repository']['url']
s.author = package['author']
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
s.source_files = 'ios/Plugin/models/*.{swift,h,m,c,cc,mm,cpp}',
'ios/Plugin/utils/*.{swift,h,m,c,cc,mm,cpp}',
'ios/Plugin/dispatchers/*.{swift,h,m,c,cc,mm,cpp}',
'ios/Plugin/*.{swift,h,m,c,cc,mm,cpp}',
'ios/Plugin/TalsecRuntime.xcframework'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.swift_version = '5.1'
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework TalsecRuntime' }
s.ios.vendored_frameworks = "ios/Plugin/TalsecRuntime.xcframework"
end