-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMCryptoLib.podspec
More file actions
34 lines (20 loc) · 937 Bytes
/
Copy pathMCryptoLib.podspec
File metadata and controls
34 lines (20 loc) · 937 Bytes
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
Pod::Spec.new do |s|
s.name = "MCryptoLib"
s.version = "0.8.10"
s.summary = "A simple PGP, S/MIME and Mynigma encryption library."
s.description = <<-DESC
MCryptoLib is a simple, stable, modern, easy-to-use library for PGP, S/MIME and Mynigma encryption support on iOS and Mac OS X.
DESC
s.homepage = "https://mynigma.org"
s.license = "GPLv3"
s.author = { "Romes" => "roman@mynigma.org" }
s.ios.deployment_target = "7.0"
s.osx.deployment_target = "10.8"
s.source = { :git => "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/Mynigma/MCryptoLib.git" }
s.source_files = "MCryptoLib/**/*.{xcdatamodeld,h,m,mm,c,cc}"
s.public_header_files = "MCryptoLib/**/*.h"
s.requires_arc = true
s.resource_bundles = { 'MCryptoLib' => "MCryptoLib/**/*.{xcdatamodeld,jpg,html,txt,xml,plist}" }
s.dependency 'OpenSSL', '~> 1.0'
s.dependency 'MProtoBuf'
end