Created
July 10, 2014 16:03
-
-
Save witwall/d0aa0f656e1a091e46c2 to your computer and use it in GitHub Desktop.
archive pdfium, gyp, v8, icu and cygwin to separated packages
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
mkdir -p pdfium/export | |
cd pdfium | |
git clone https://pdfium.googlesource.com/pdfium | |
cd pdfium | |
git archive --format zip --output ../export/pdfium.zip master | |
cd .. | |
svn co http://gyp.googlecode.com/svn/trunk gyp | |
svn export gyp export/gyp | |
svn co http://v8.googlecode.com/svn/trunk v8 | |
svn export v8 export/v8 | |
svn co https://src.chromium.org/chrome/trunk/deps/third_party/icu46 icu | |
svn export icu export/icu | |
svn co http://src.chromium.org/svn/trunk/deps/third_party/cygwin@231940 cygwin | |
svn export cygwin export/cygwin | |
cd export | |
zip -r gyp.zip gyp | |
zip -r v8.zip v8 | |
zip -r icu.zip icu | |
zip -r cygwin.zip cygwin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment