-
Notifications
You must be signed in to change notification settings - Fork 2
/
react-native-zcoin-sigma.podspec
33 lines (27 loc) · 1.28 KB
/
react-native-zcoin-sigma.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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-zcoin-sigma"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
react-native-zcoin-sigma
DESC
s.homepage = "https://github.com/github_account/react-native-zcoin-sigma"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.authors = { "Your Name" => "[email protected]" }
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/github_account/react-native-zcoin-sigma.git", :tag => "#{s.version}" }
s.source_files = ["ios/*.{h,m,mm,hpp,cpp}", "ios/libsigma/src/*.{h,c,hpp,cpp}",
"ios/libsigma/secp256k1/include/*.{h,hpp}", "ios/libsigma/bitcoin/**/*.{h,c,hpp,cpp}"]
s.requires_arc = true
s.xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '"$(SRCROOT)/../../node_modules/react-native-zcoin-sigma/ios"/**',
'ALWAYS_SEARCH_USER_PATHS' => 'YES',
'LIBRARY_SEARCH_PATHS' => '$(SRCROOT)/../node_modules/react-native-zcoin-sigma/ios' }
s.library = 'secp'
s.vendored_libraries = 'secp.a'
s.dependency "React"
# ...
# s.dependency "..."
end