-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVeltoKit.podspec
More file actions
18 lines (18 loc) · 856 Bytes
/
VeltoKit.podspec
File metadata and controls
18 lines (18 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'VeltoKit'
s.version = '0.1.0'
s.summary = 'BLE motion bytes → GameInput for iOS games'
s.description = <<-DESC
VeltoKit maps reverse-engineered BLE cap IMU + button packets into a unified
GameInput struct each frame. Swift, iOS 16+, no UI and no CoreBluetooth in the core library.
DESC
s.homepage = 'https://github.com/koderhack/veltokit'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Koderteam' => 'https://github.com/koderhack' }
s.source = { git: 'https://github.com/koderhack/veltokit.git', tag: s.version.to_s }
s.platform = :ios, '16.0'
s.swift_version = '5.9'
s.source_files = 'VeltoKit/**/*.swift'
s.frameworks = 'Foundation', 'CoreBluetooth'
s.requires_arc = true
end