Skip to content

Instantly share code, notes, and snippets.

@stevestreza
Created November 27, 2013 04:38
Show Gist options
  • Save stevestreza/7670728 to your computer and use it in GitHub Desktop.
Save stevestreza/7670728 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'ChatCore'
s.version = '1.0'
s.platform = :ios
s.ios.deployment_target = '5.0'
s.prefix_header_file = 'Basic.pch'
s.source = { :svn => 'http://source.colloquy.info/svn/trunk' }
s.source_files = 'Chat Core/*.{h,m}', 'Additions/*.{h,m}'
s.public_header_files = 'Chat Core/*.h', 'Additions/*.h'
s.exclude_files = 'Chat Core/*{SILC,XMPP,Plugin}*', 'Additions/NS{AttributedString,Image,Color,Script,Text,URL}*', 'Additions/UIActionSheetAdditions.*'
s.compiler_flags = '-DENABLE_SECRETS -DENABLE_AUTO_PORT_MAPPING=0 -DENABLE_SCRIPTING=0 -DENABLE_PLUGINS=0 -DENABLE_SILC=0 -DENABLE_ICB=0 -DENABLE_XMPP=0 -DRKL_FAST_MUTABLE_CHECK -DNS_BLOCK_ASSERTIONS -DRKL_CACHE_SIZE=47 -DRKL_BLOCKS=0 -DUSE_ATTRIBUTED_CHAT_STRING=0 -DUSE_HTML_CHAT_STRING=1 -DSYSTEM(NAME)="(defined(SYSTEM_##NAME) && SYSTEM_##NAME)" -DLIKELY(x)="__builtin_expect((x) ? 1 : 0, 1)" -DUNLIKELY(x)="__builtin_expect((x) ? 1 : 0, 0)"'
s.requires_arc = false
s.libraries = 'icucore'
s.frameworks = 'Security', 'CFNetwork'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment