-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVifra.podspec
More file actions
25 lines (23 loc) · 1.17 KB
/
Copy pathVifra.podspec
File metadata and controls
25 lines (23 loc) · 1.17 KB
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
Pod::Spec.new do |s|
s.name = "Vifra"
s.version = "0.4.0"
s.summary = "Easy Haptic Feedback (Vibration) in Swift"
s.description = <<-DESC
Vifra is a framework for macOS, iOS and watchOS that provides simplified access to the device actuator to provide haptic feedback (vibration through the taptic engine).
DESC
s.homepage = "https://github.com/matis-schotte/Vifra"
s.documentation_url = "https://matis-schotte.github.io/Vifra"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Matis Schotte" => "dm26f1cab8aa26@ungeord.net" }
s.social_media_url = "https://twitter.com/matis_schotte"
s.source = { :git => "https://github.com/matis-schotte/Vifra.git", :tag => s.version }
s.source_files = "Sources/*.swift"
s.macos.source_files = "Sources/macOS/*.{h,swift}"
s.macos.deployment_target = "10.12"
s.macos.framework = "MultitouchSupport"
# s.ios.deployment_target = "5.0"
s.watchos.source_files = "Sources/watchOS/*.swift"
s.watchos.deployment_target = "2.0"
s.swift_version = "4.0"
s.xcconfig = { "FRAMEWORK_SEARCH_PATHS" => "$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks" }
end