-
Notifications
You must be signed in to change notification settings - Fork 22
/
F53OSC.podspec
32 lines (23 loc) · 1.11 KB
/
F53OSC.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 = 'F53OSC'
s.version = '1.3.0'
s.summary = 'A nice open source OSC library for Objective-C.'
s.description = <<-DESC
* Hey neat, it's a nice open source OSC library for Objective-C.
* From your friends at Figure 53.
* For convenience, we've included a few public domain source files from CocoaAsyncSocket. But appropriate thanks, kudos, and curiosity about that code should be directed to the source.
DESC
s.author = 'Figure 53, LLC'
s.homepage = 'https://figure53.com/studio/'
s.license = { :type => 'BSD-like', :file => 'LICENSE.txt' }
s.social_media_url = 'https://twitter.com/figure53'
s.platforms = { :osx => '11.0', :ios => '14.0', :tvos => '14.0' }
s.swift_version = '5.0'
s.source = { :git => 'https://github.com/Figure53/F53OSC.git', :tag => "#{s.version}", }
s.requires_arc = true
s.source_files = [
'Sources/F53OSC/*.{h,m,swift}',
'Sources/Vendor/CocoaAsyncSocket/*.{h,m}',
]
s.frameworks = 'Security', 'CFNetwork'
end