-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathed25519.c.podspec
20 lines (20 loc) · 1.03 KB
/
ed25519.c.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = 'ed25519.c'
spec.version = '0.1.1'
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.10"
spec.tvos.deployment_target = "9.0"
spec.watchos.deployment_target = "2.0"
spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
spec.summary = 'ed25519 sha2 module'
spec.homepage = 'https://github.com/novasamatech/ed25519.c'
spec.author = 'Novasama Technologies'
spec.source = { :git => 'https://github.com/novasamatech/ed25519.c.git', :tag => String(spec.version) }
spec.pod_target_xcconfig = {
'OTHER_CFLAGS' => '-pedantic -Wall -Wextra -Wcast-align -Wnested-externs -Wshadow -Wstrict-prototypes -Wno-shorten-64-to-32 -Wno-conditional-uninitialized -Wno-unused-function -Wno-long-long -Wno-overlength-strings -O3',
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/ed25519"'
}
spec.source_files = 'ed25519/**/*.{c,h}'
spec.public_header_files = 'ed25519/include/*.h'
spec.module_name = 'ed25519'
end