-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vuckt.podspec
32 lines (29 loc) · 1.32 KB
/
Vuckt.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
29
30
31
32
Pod::Spec.new do |s|
s.name = 'Vuckt'
s.version = ->{
Dir.chdir(__dir__) do
semver_regex = /\d+\.\d+\.\d+(?:-[\w\.]+)?(?:\+[\w\.]+)?/
return `xcodebuild -showBuildSettings 2>/dev/null`.match(/CURRENT_PROJECT_VERSION = (#{semver_regex})/)[1]
end
}.call
s.swift_versions = ['4.0', '4.2', '5.0']
s.authors = { 'capnslipp' => '[email protected]' }
s.social_media_url = 'https://twitter.com/capnslipp'
s.license = { :type => 'Public Domain', :file => 'LICENSE' }
s.homepage = 'https://github.com/capnslipp/Vuckt'
s.source = { :git => 'https://github.com/capnslipp/Vuckt.git', :tag => "podspec/#{s.version}" }
s.summary = "A Swift Vector Library That Doesn't Suck"
s.description = "A Swift library providing Obj-C-compatible integral & floating vector struct types with zero-cost SIMD vector bridging, and convenience methods to bridge to/from other vector-ish types throughout Cocoa."
# Platform
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.visionos.deployment_target = '1.0'
s.osx.deployment_target = '10.10'
# Build Settings
s.requires_arc = false
s.prefix_header_file = 'Sources/Vuckt.pch'
# File Patterns
s.source_files = 'Sources/**/*'
s.exclude_files = 'Sources/**/*.gyb', 'Sources/**/*_NoObjCBridge.swift'
end