18 lines
837 B
Ruby
18 lines
837 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'upnpx'
|
|
s.version = '1.2.4'
|
|
s.license = 'BSD'
|
|
s.summary = 'Open Source Mac OS X / iOS Cocoa UPnP Stack.'
|
|
s.homepage = 'http://code.google.com/p/upnpx/'
|
|
s.authors = { 'Bruno Keymolen' => 'bruno.keymolen@gmail.com' }
|
|
s.source = { :svn => 'http://upnpx.googlecode.com/svn', :tag => 'Release-1.2.4' }
|
|
|
|
s.description = 'Static OS X & iOS UPnP library written in Cocoa (UPnP) and C++ (SSDP).' \
|
|
'The Current implementation has support for control point/client only.'
|
|
|
|
s.ios.source_files = 'src/{api,common,eventserver,ssdp,upnp}/*.{h,m,mm,c,cpp}', 'src/port/ios/*.{h,m}'
|
|
s.osx.source_files = 'src/{api,common,eventserver,ssdp,upnp}/*.{h,m,mm,c,cpp}', 'src/port/macos/*.{h.m}'
|
|
s.compiler_flags = '-Wno-format'
|
|
s.xcconfig = { 'OTHER_LDFLAGS' => '-lstdc++' }
|
|
end
|