- Replace AvraSasmo/UltrafastSecp256k1 with shrec/UltrafastSecp256k1 in all binding configs - Replace shrec/Secp256K1fast with shrec/UltrafastSecp256k1 in CI, docs, package managers - Fix WASM release archive to use wasm/README.md instead of root README.md - Fix Package.swift and conanfile.py URLs 24 files changed across: bindings (npm, nuget, dart, php, python, ruby, rust, react-native), CI workflows, docs, Package.swift, conanfile.py, podspec, vcpkg.json, CMakeLists.txt
18 lines
706 B
Ruby
18 lines
706 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "react-native-ufsecp"
|
|
s.version = "3.4.0"
|
|
s.summary = "React Native bindings for UltrafastSecp256k1 (ufsecp C ABI v1)"
|
|
s.homepage = "https://github.com/shrec/UltrafastSecp256k1"
|
|
s.license = "AGPL-3.0-only"
|
|
s.author = "UltrafastSecp256k1"
|
|
s.source = { :git => "https://github.com/shrec/UltrafastSecp256k1.git", :tag => s.version }
|
|
s.platforms = { :ios => "15.0" }
|
|
s.source_files = "ios/**/*.{h,m,mm}"
|
|
s.dependency "React-Core"
|
|
s.libraries = "ufsecp"
|
|
s.xcconfig = {
|
|
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/../../../include/ufsecp\"",
|
|
"LIBRARY_SEARCH_PATHS" => "\"$(PODS_ROOT)/../../../build\""
|
|
}
|
|
end
|