forked from tyrone-sudeium/libopus-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibopus-ios.podspec
16 lines (16 loc) · 914 Bytes
/
libopus-ios.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "libopus-ios"
s.version = "1.1"
s.summary = "Opus is a totally open, royalty-free, highly versatile audio codec."
s.homepage = "http://www.opus-codec.org"
s.license = 'BSD'
s.authors = { "Tyrone Trevorrow" => "[email protected]", "Xiph.org" => "[email protected]"}
s.source = { :git => "https://github.com/mrojas/libopus-ios.git", :tag => '1.1'}
s.ios.deployment_target = '6.0' # We're compiling arm64, so I think 6.0 minimum is needed
s.source_files = 'config.h', 'libopus/{celt,silk,src,include}/*.{h,c}',
'libopus/**/{arm,float,x86}/*.{h,c}'
s.exclude_files = 'libopus/src/opus_demo.c', 'libopus/src/repacketizer_demo.c', 'libopus/src/opus_compare.c', 'libopus/celt/opus_custom_demo.c'
s.public_header_files = 'libopus/include/*.h'
s.header_mappings_dir = 'libopus'
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'HAVE_CONFIG_H=1' }
end