-
Notifications
You must be signed in to change notification settings - Fork 54
/
AxeSync.podspec
executable file
·41 lines (33 loc) · 1.78 KB
/
AxeSync.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
#
# Run the following command to validate the podspec
# pod lib lint AxeSync.podspec --no-clean --verbose --allow-warnings
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'AxeSync'
s.version = '0.1.0'
s.summary = 'Axe Sync is a light and configurable blockchain client that you can embed into your iOS Application.'
s.description = 'Axe Sync is a light blockchain client that you can embed into your iOS Application. It is fully customizable to make the type of node you are interested in.'
s.homepage = 'https://github.com/axerunners/axesync.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'axerunners' => 'info@axerunners.com' }
s.source = { :git => 'https://github.com/axerunners/axesync.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.source_files = "AxeSync/**/*.{h,m,mm}"
s.public_header_files = 'AxeSync/**/*.h'
s.private_header_files = 'AxeSync/crypto/x11/*.h'
s.libraries = 'bz2', 'sqlite3'
s.resource_bundles = {'AxeSync' => ['AxeSync/*.xcdatamodeld', 'AxeSync/MappingModels/*.xcmappingmodel', 'AxeSync/*.plist', 'AxeSync/*.lproj', 'AxeSync/MasternodeLists/*.dat', 'AxeSync/*.json']}
s.framework = 'Foundation', 'UIKit', 'SystemConfiguration', 'CoreData', 'BackgroundTasks'
s.compiler_flags = '-Wno-comma'
s.dependency 'secp256k1_axe', '0.1.3-alpha.2'
s.dependency 'bls-signatures-pod', '0.2.10'
s.dependency 'CocoaLumberjack', '3.6.0'
s.dependency 'DWAlertController', '0.2.1'
s.dependency 'DSDynamicOptions', '0.1.1'
s.dependency 'DAPI-GRPC', '0.0.1'
s.dependency 'TinyCborObjc', '0.4.6'
s.prefix_header_contents = '#import "DSEnvironment.h"'
end