-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCSIOpusCodec.podspec
More file actions
24 lines (21 loc) · 940 Bytes
/
CSIOpusCodec.podspec
File metadata and controls
24 lines (21 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "CSIOpusCodec"
s.version = "0.0.5"
s.summary = "Another Objective-C wrapper for Opus Codec."
s.description = <<-DESC
This Pod is built to package the existing opus codec wrapper
by Sam Leitch.
DESC
s.homepage = "https://github.com/oneam/OpusIPhoneTest"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Sam Leitch"
s.platform = :ios
s.source = { :git => "https://github.com/jessearmand/CSIOpusCodec.git", :tag => "0.0.5" }
s.requires_arc = true
s.source_files = "#{s.name}/*.{h,m,c}", "opus/include/*.h"
s.header_dir = "opus/include"
s.header_mappings_dir = "opus/include"
s.public_header_files = "#{s.name}/*.h", "opus/include/*.h"
s.xcconfig = { "HEADER_SEARCH_PATHS" => "${PODS_ROOT}/#{s.name}/opus/include" }
s.dependencies = { "libopus" => "~> 1.1" }
end