forked from wolfSSL/wolfssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VouchWolfSSL.podspec
28 lines (27 loc) · 1.22 KB
/
VouchWolfSSL.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
# Note, to pass lint checks: skip import validation and allow warnings. To lint:
#
# pod spec lint VouchWolfSSL.podspec --skip-import-validation --allow-warnings
#
# and to push:
#
# pod repo push REPO_NAME VouchWolfSSL.podspec --skip-import-validation --allow-warnings
#
# where REPO_NAME is the name for the vouchio-internal-specs private spec repo.
#
# The versioning scheme used here is to simply append a version suffix to wolfSSL's
# version number, tagging things as wolfssl-<version>.
Pod::Spec.new do |s|
s.name = 'VouchWolfSSL'
s.version = '4.8.1.2'
s.license = { }
s.summary = 'Vouch wolfSSL fork'
s.homepage = 'https://vouch.io'
s.author = 'Vouch'
s.platform = :ios
s.source = { :git => "https://github.com/vouchio/wolfssl.git", :tag => 'wolfssl-4.8.1.2' }
s.source_files = ["src/*.c", "wolfcrypt/src/*.c", "wolfssl/*.h", "wolfssl/wolfcrypt/*.h"]
s.header_mappings_dir = ""
s.pod_target_xcconfig = { :HEADER_SEARCH_PATHS => "\"${PODS_TARGET_SRCROOT}\"",
:CLANG_WARN_DOCUMENTATION_COMMENTS => "NO" }
s.requires_arc = false
end