-
Notifications
You must be signed in to change notification settings - Fork 8
/
tvhclient-lib.podspec
37 lines (28 loc) · 1.56 KB
/
tvhclient-lib.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
36
37
Pod::Spec.new do |s|
s.name = 'tvhclient-lib'
s.version = '3.7.2'
s.platforms = { 'ios' => '8.0', 'tvos' => '9.0' }
s.summary = 'Tvheadend iOS library enables you to create apps that connect to tvheadend. This is the base of TvhClient'
s.description = <<-DESC
This library contains shared code between tvhclient-ios and tvhclient-tvOS. It is also all the internal networking code that talks to tvheadend.
DESC
s.homepage = 'https://github.com/zipleen/tvheadend-ios-lib'
s.license = { :type => 'MPL-2', :file => 'LICENSE.md' }
s.author = { 'Luis Fernandes' => '[email protected]' }
s.source = { :git => 'https://github.com/zipleen/tvheadend-ios-lib.git', :tag => 'v3.0.0' }
s.social_media_url = 'https://twitter.com/zipleen'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'tvheadend-ios-lib/**/*.{h,m}'
s.public_header_files = 'tvheadend-ios-lib/**/*.h'
s.prefix_header_file = 'tvheadend-ios-lib/tvheadend-ios-lib-Prefix.pch'
s.frameworks = 'Foundation', 'SystemConfiguration', 'CFNetwork'
s.weak_framework = 'CoreText', 'MediaAccessibility'
s.requires_arc = true
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC -all_load' }
s.ios.compiler_flags = '-DENABLE_XBMC -DENABLE_EXTERNAL_APPS'
#s.ios.compiler_flags = '-DENABLE_CHROMECAST -DENABLE_XBMC -DENABLE_EXTERNAL_APPS'
s.ios.dependency 'AFNetworking', '~> 4.0'
#s.ios.dependency 'google-cast-sdk'
s.tvos.dependency 'AFNetworking', '~> 4.0'
end