forked from bitmark-inc/tweetnacl-swiftwrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TweetNacl.podspec
22 lines (22 loc) · 988 Bytes
/
TweetNacl.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "TweetNacl"
s.version = "1.1.1"
s.summary = "TweetNacl wrapper library written in Swift."
s.description = <<-DESC
A Swift wrapper for TweetNacl C library
DESC
s.homepage = "https://github.com/bitmark-inc/tweetnacl-swiftwrap"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Bitmark Inc" => "[email protected]" }
s.social_media_url = "https://twitter.com/bitmarkinc"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/bitmark-inc/tweetnacl-swiftwrap.git", :tag => s.version }
s.source_files = "Sources/**/*.{h,c,swift}"
s.private_header_files = 'Sources/CTweetNacl/include/*.h'
s.preserve_paths = 'Sources/module.map'
s.frameworks = "Foundation"
s.xcconfig = { 'SWIFT_INCLUDE_PATHS' => '$(PODS_ROOT)/TweetNacl/Sources' }
end