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 1
1
#! /bin/bash
2
2
3
3
TARGET_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
4
5
SVN_REV=216995
5
-
6
6
mkdir -p $TARGET_DIR /webkit
7
7
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Source $TARGET_DIR /webkit/Source
8
8
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Tools $TARGET_DIR /webkit/Tools
9
9
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/CMakeLists.txt $TARGET_DIR /webkit/CMakeLists.txt
10
10
11
-
11
+ # As the trunk for $SVN_REV differs from releases dir I'm replacing JSC and WTF with versions from releases dir
12
12
rm -rf $TARGET_DIR /webkit/Source/JavaScriptCore
13
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
14
15
15
rm -rf $TARGET_DIR /webkit/Source/WTF
16
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
17
18
-
19
18
mkdir -p $TARGET_DIR /icu
19
+ # This is for the latest release for the latest android from https://android.googlesource.com/platform/external/icu/
20
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