Skip to content

Instantly share code, notes, and snippets.

@witwall
Created July 10, 2014 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save witwall/d0aa0f656e1a091e46c2 to your computer and use it in GitHub Desktop.
Save witwall/d0aa0f656e1a091e46c2 to your computer and use it in GitHub Desktop.
archive pdfium, gyp, v8, icu and cygwin to separated packages
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