Skip to content

Commit

Permalink
Add Podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ccahoon committed Aug 19, 2014
1 parent 1b6a697 commit 767901d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions F53OSC.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
Pod::Spec.new do |s|
s.name = "F53OSC"
s.version = "1.0.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.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC

s.author = "Figure53"
s.homepage = "http://figure53.com/code/"

s.license = { :type => "BSD-like", :file => "LICENSE.txt" }

s.social_media_url = "https://twitter.com/figure53"

s.source = { :git => "https://github.com/Figure53/F53OSC.git", :tag => "v1.0.0" }

s.source_files = '*.{h,m}'
s.requires_arc = false

s.exclude_files = "GCDAsync*.{h,m}"
s.subspec 'arc' do |as|
as.source_files = "GCDAsync*.{h,m}"
as.requires_arc = true
end

s.frameworks = "Security", "CFNetwork"
end

0 comments on commit 767901d

Please sign in to comment.