This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = 'KissXML' | |
| s.license = 'MIT' | |
| s.summary = 'A replacement for Cocoa\'s NSXML cluster of classes. Based on libxml.' | |
| s.homepage = 'https://github.com/robbiehanson/KissXML' | |
| s.author = { 'Robbie Hanson' => '[email protected]' } | |
| s.source = { :git => '[email protected]:Labgoo/KissXML.git' } | |
| s.source_files = 'KissXML/**/*.{h,m}' | |
| s.library = 'xml2' | |
| s.requires_arc = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = 'XMPPFramework' | |
| s.homepage = 'https://github.com/robbiehanson/XMPPFramework' | |
| s.version = '3.6.1' | |
| s.author = { 'Robbie Hanson' => '[email protected]' } | |
| s.license = { :type => 'BSD', :file => 'copying.txt' } | |
| s.summary = 'An XMPP Framework in Objective-C for Mac and iOS' | |
| s.description = <<-DESC | |
| An XMPP Framework in Objective-C for the Mac / iOS development | |
| community. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" | |
| brew install ruby |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| build pjsip | |
| http://svn.pjsip.org/repos/pjproject/trunk | |
| cd /path/to/your/pjsip/dir | |
| for armv7 | |
| ARCH='-arch armv7' ./configure-iphone | |
| or for armv7s | |
| ARCH='-arch armv7s' ./configure-iphone |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defaults write com.apple.finder AppleShowAllFiles TRUE | |
| killall Finder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for n in *.NEF ; do dcraw -c -v $n | cjpeg >${n/%NEF/JPG} ; done |