Skip to content

Commit 90edc68

Browse files
authored
Merge pull request #1 from minguking/develop
add CocoaPod and Carthage support
2 parents d7c9da4 + bd8f7c4 commit 90edc68

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

SwiftEBD.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
Pod::Spec.new do |s|
3+
s.name = 'SwiftEBD'
4+
s.version = '1.1.0'
5+
s.summary = 'Eye Blink Detector for Swift using ARKit'
6+
s.description = <<-DESC
7+
SwiftEBD is a lightweight Swift library that lets you detect left, right, or both eye blinks using ARKit’s TrueDepth camera.
8+
It is useful for accessibility features, gesture-based controls, and AR interactions.
9+
DESC
10+
s.homepage = 'https://github.com/minguking/SwiftEBD'
11+
s.license = { :type => 'MIT', :file => 'LICENSE' }
12+
s.author = { 'minguking' => 'minqu.kang@gmail.com' }
13+
s.source = { :git => 'https://github.com/minguking/SwiftEBD.git', :tag => s.version.to_s }
14+
s.platform = :ios, '13.0'
15+
s.source_files = 'Sources/SwiftEBD/**/*.{swift}'
16+
end

0 commit comments

Comments
 (0)