File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ TARGET_DIR=target
4+ SVN_REV=216995
5+
6+ mkdir -p $TARGET_DIR /webkit
7+ svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Source $TARGET_DIR /webkit/Source
8+ svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Tools $TARGET_DIR /webkit/Tools
9+ svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/CMakeLists.txt $TARGET_DIR /webkit/CMakeLists.txt
10+
11+
12+ rm -rf $TARGET_DIR /webkit/Source/JavaScriptCore
13+ svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/releases/Apple/iOS%2010.3.2/JavaScriptCore $TARGET_DIR /webkit/Source/JavaScriptCore
14+
15+ rm -rf $TARGET_DIR /webkit/Source/WTF
16+ svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/releases/Apple/iOS%2010.3.2/WTF $TARGET_DIR /webkit/Source/WTF
17+
18+
19+ mkdir -p $TARGET_DIR /icu
20+ curl https://android.googlesource.com/platform/external/icu/+archive/android-7.1.2_r11/icu4c.tar.gz | tar xzf - -C $TARGET_DIR /icu
You can’t perform that action at this time.
0 commit comments