Skip to content
This repository was archived by the owner on Jul 27, 2022. It is now read-only.

Importing from libkml.googlecode.com

mashbridge edited this page Nov 13, 2013 · 4 revisions

The recipe was:

$ mkdir libkml && cd $_
$ svn2git https://libkml.googlecode.com/svn --authors authors.txt
$ git remote add origin git@github.com:google/libkml.git
$ git push -u origin master
$ git push -u origin release-0.{1,2,3,4,5,6,9}
$ git push -u origin release-1.{0,1.0,2}

svn2git doesn't work first time on OS X 10.{8,9}. The perl libs aren't linked correctly. To get around this:

$ sudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.16/darwin-thread-multi-2level/SVN /System/Library/Perl/Extras/5.16/SVN && \  
sudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.16/darwin-thread-multi-2level/auto/SVN/ /System/Library/Perl/Extras/5.16/auto/SVN

Also necessary on a fresh install of OS X 10.9 (Mavericks) was brew install automake autoconf libtool, even with XCode and its command-line tools installed.

Clone this wiki locally