This file contains 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 = "VVOSC" | |
s.version = "0.1.0" | |
s.summary = "A short description of VVOSC." | |
s.description = <<-DESC | |
An optional longer description of VVOSC | |
* Markdown format. | |
* Don't worry about the indent, we strip it! | |
DESC |
This file contains 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
# coding: utf-8 | |
Pod::Spec.new do |s| | |
s.name = "DoubleControlSDK" | |
s.version = "0.6" | |
s.summary = "A short description of DoubleControlSDK." | |
s.description = <<-DESC | |
DESC | |
s.homepage = "http://github.com/doublerobotics/Basic-Control-SDK-iOS" |
This file contains 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
# $Date:$ | |
$pdf_mode = 1; | |
$pdflatex = 'pdflatex -interaction=nonstopmode -synctex=1 %O %S'; | |
$bibtex = 'bibtex %O %B'; | |
# for japanese platex2e | |
# $pdf_mode = 3; | |
# $latex = 'platex -kanji=utf8 -interaction=nonstopmode -synctex=1 %O %S'; | |
# $bibtex = 'pbibtex -kanji=utf8 %O %B'; |
This file contains 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
./configure \ | |
--host="arm-apple-darwin" \ | |
--enable-static \ | |
--disable-shared \ | |
--disable-dependency-tracking \ | |
CC=`xcrun -f --sdk iphoneos clang` \ | |
CXX=`xcrun -f --sdk iphoneos clang++` \ | |
AR=`xcrun -f --sdk iphoneos ar` \ | |
RANLIB=`xcrun -f --sdk iphoneos ranlib` \ | |
NM=`xcrun -f --sdk iphoneos nm` \ |