-
Notifications
You must be signed in to change notification settings - Fork 0
/
MIDIFish.podspec
35 lines (25 loc) · 1.28 KB
/
MIDIFish.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
33
34
35
Pod::Spec.new do |s|
s.name = "MIDIFish"
s.version = "0.1.0"
s.summary = "Clean and clear iOS MIDI including Wi-Fi."
s.description = <<-DESC
CoreMIDI is complex and arguably convoluted, especially for the
requirements of most iOS apps. This library simplifies the semantics
and brings it under a clear object model.
NOTE, while this library is being used in production, it's still very
beta and not entirely feature complete (eg. MIDI Receive has not been implemented)
Props to PGMidi, the Guru of nearly all of us CoreMIDI hackers
DESC
s.homepage = "https://github.com/Air-Craft/MIDIFish"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Hari Karam Singh" => "[email protected]" }
s.social_media_url = "http://twitter.com/AirCraftHQ"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/Air-Craft/MIDIFish.git", :tag => s.version.to_s }
s.source_files = "MIDIFish/**/*.{h,m}"
s.public_header_files = "MIDIFish/*.h"
s.resource = "MIDIFish,bundle"
s.preserve_paths = 'MIDIFish,bundle'
s.frameworks = "Foundation", "CoreMIDI"
s.requires_arc = true
end