From be5e577ffeb37f3b62e5b69a2e320330cb724246 Mon Sep 17 00:00:00 2001 From: vixentael Date: Thu, 7 Mar 2019 19:09:42 +0200 Subject: [PATCH] Update acrawriter.podspec (#325) * clean up podspec from unused imports * stick with themis 0.10.4 and above * link podspec to master * use header search path * re-link to the newest master --- acrawriter.podspec | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/acrawriter.podspec b/acrawriter.podspec index a5ac8c96f..c113bb9a7 100644 --- a/acrawriter.podspec +++ b/acrawriter.podspec @@ -1,14 +1,17 @@ Pod::Spec.new do |s| s.name = "acrawriter" - s.version = "1.0.2" + s.version = "1.0.3" s.summary = "AcraWriter library for iOS: encrypts data into AcraStructs, allowing Acra to decrypt it" s.description = "Part of Acra database protection suite: developers can encrypt the sensitive data by generating AcraStructs with AcraWriter anywhere across their apps. AcraServer or AcraTranslator can be used for decryption." s.homepage = "https://cossacklabs.com" - s.source = { :git => "https://github.com/cossacklabs/acra.git", :branch => 'master'} + + # TODO: change on release :) + s.source = { :git => "https://github.com/cossacklabs/acra.git", :commit => 'd289875e36a4f3be61a0f307dfa19637d45cc321'} + s.license = { :type => 'Apache 2.0'} s.author = {'cossacklabs' => 'info@cossacklabs.com'} - s.dependency 'themis', '~> 0.10.0' + s.dependency 'themis', '~> 0.10.4' s.ios.deployment_target = '8.0' s.osx.deployment_target = '10.9' @@ -17,14 +20,11 @@ Pod::Spec.new do |s| s.source_files = "wrappers/objc/AcraWriter/*.{h,m}" s.public_header_files = "wrappers/objc/AcraWriter/AcraWriter.h", "wrappers/objc/AcraWriter/AcraStruct.h" - - s.ios.xcconfig = { 'OTHER_CFLAGS' => '-DLIBRESSL', 'USE_HEADERMAP' => 'NO', - 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/themis/src" "${PODS_ROOT}/themis/src/wrappers/themis/Obj-C"', 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' } - + # Enable bitcode s.ios.pod_target_xcconfig = {'ENABLE_BITCODE' => 'YES' } - - s.osx.xcconfig = { 'OTHER_CFLAGS' => '-DLIBRESSL', 'USE_HEADERMAP' => 'NO', - 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/themis/src" "${PODS_ROOT}/themis/src/wrappers/themis/Obj-C"', 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' } -end + s.ios.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/themis/src" "${PODS_ROOT}/themis/src/wrappers/themis/Obj-C"'} + s.osx.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/themis/src" "${PODS_ROOT}/themis/src/wrappers/themis/Obj-C"'} + +end \ No newline at end of file