File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33TARGET_DIR=target
4+ # This SVN revision number was determined by looking for the latest iOS release at https://trac.webkit.org/browser/webkit/releases/Apple
45SVN_REV=216995
5-
66mkdir -p $TARGET_DIR /webkit
77svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Source $TARGET_DIR /webkit/Source
88svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Tools $TARGET_DIR /webkit/Tools
99svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/CMakeLists.txt $TARGET_DIR /webkit/CMakeLists.txt
1010
11-
11+ # As the trunk for $SVN_REV differs from releases dir I'm replacing JSC and WTF with versions from releases dir
1212rm -rf $TARGET_DIR /webkit/Source/JavaScriptCore
1313svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/releases/Apple/iOS%2010.3.2/JavaScriptCore $TARGET_DIR /webkit/Source/JavaScriptCore
1414
1515rm -rf $TARGET_DIR /webkit/Source/WTF
1616svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/releases/Apple/iOS%2010.3.2/WTF $TARGET_DIR /webkit/Source/WTF
1717
18-
1918mkdir -p $TARGET_DIR /icu
19+ # This is for the latest release for the latest android from https://android.googlesource.com/platform/external/icu/
2020curl 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