File tree 7 files changed +41
-7
lines changed
7 files changed +41
-7
lines changed Original file line number Diff line number Diff line change 1
1
#
2
2
# Brotli
3
3
#
4
+ BROTLI_GIT_VERSION: =v1.0.9
5
+
4
6
build/lib/brotli/js/decode.js : build/lib/brotli/configured
5
7
build/lib/brotli/js/polyfill.js : build/lib/brotli/configured
6
8
build/lib/brotli/configured : lib/brotli $(wildcard $(BASE_DIR ) build/patches/brotli/* .patch)
@@ -37,4 +39,7 @@ git-brotli:
37
39
cd lib/brotli && \
38
40
git reset --hard && \
39
41
git clean -dfx && \
40
- git pull origin master
42
+ git fetch origin && \
43
+ git checkout $(BROTLI_GIT_VERSION ) && \
44
+ git submodule sync --recursive && \
45
+ git submodule update --init --recursive
Original file line number Diff line number Diff line change 1
1
#
2
2
# Expat
3
3
#
4
+ EXPAT_GIT_VERSION: =R_2_4_1
5
+
4
6
build/lib/expat/configured : lib/expat
5
7
mkdir -p build/lib/expat
6
8
touch build/lib/expat/configured
@@ -31,4 +33,7 @@ git-expat:
31
33
cd lib/expat && \
32
34
git reset --hard && \
33
35
git clean -dfx && \
34
- git pull origin master
36
+ git fetch origin && \
37
+ git checkout $(EXPAT_GIT_VERSION ) && \
38
+ git submodule sync --recursive && \
39
+ git submodule update --init --recursive
Original file line number Diff line number Diff line change 1
1
#
2
2
# Fontconfig
3
3
#
4
+ FONTCONFIG_GIT_VERSION: =2.13.94
5
+
4
6
build/lib/fontconfig/configure : lib/fontconfig $(wildcard $(BASE_DIR ) build/patches/fontconfig/* .patch)
5
7
rm -rf build/lib/fontconfig
6
8
cp -r lib/fontconfig build/lib/fontconfig
@@ -34,4 +36,7 @@ git-fontconfig:
34
36
cd lib/fontconfig && \
35
37
git reset --hard && \
36
38
git clean -dfx && \
37
- git pull origin master
39
+ git fetch origin && \
40
+ git checkout $(FONTCONFIG_GIT_VERSION ) && \
41
+ git submodule sync --recursive && \
42
+ git submodule update --init --recursive
Original file line number Diff line number Diff line change 1
1
#
2
2
# Freetype
3
3
#
4
+ FREETYPE_GIT_VERSION: =VER-2-11-0
4
5
5
6
# # Without Harfbuzz (Bootstrap)
6
7
build/lib/freetype/build_hb/dist_hb/lib/libfreetype.a : $(DIST_DIR ) /lib/libbrotlidec.a $(wildcard $(BASE_DIR ) build/patches/freetype/* .patch)
@@ -66,4 +67,7 @@ git-freetype:
66
67
cd lib/freetype && \
67
68
git reset --hard && \
68
69
git clean -dfx && \
69
- git pull origin master
70
+ git fetch origin && \
71
+ git checkout $(FREETYPE_GIT_VERSION ) && \
72
+ git submodule sync --recursive && \
73
+ git submodule update --init --recursive
Original file line number Diff line number Diff line change 1
1
#
2
2
# Fribidi
3
3
#
4
+ FRIBIDI_GIT_VERSION: =v1.0.10
5
+
4
6
build/lib/fribidi/configure : lib/fribidi $(wildcard $(BASE_DIR ) build/patches/fribidi/* .patch)
5
7
rm -rf build/lib/fribidi
6
8
mkdir -p build/lib
@@ -34,4 +36,7 @@ git-fribidi:
34
36
cd lib/fribidi && \
35
37
git reset --hard && \
36
38
git clean -dfx && \
37
- git pull origin master
39
+ git fetch origin && \
40
+ git checkout $(FRIBIDI_GIT_VERSION ) && \
41
+ git submodule sync --recursive && \
42
+ git submodule update --init --recursive
Original file line number Diff line number Diff line change 1
1
#
2
2
# Harfbuzz
3
3
#
4
+ HARFBUZZ_GIT_VERSION: =2.8.2
5
+
4
6
build/lib/harfbuzz/configure : lib/harfbuzz $(wildcard $(BASE_DIR ) build/patches/harfbuzz/* .patch)
5
7
rm -rf build/lib/harfbuzz
6
8
cp -r lib/harfbuzz build/lib/harfbuzz
@@ -48,4 +50,7 @@ git-harfbuzz:
48
50
cd lib/harfbuzz && \
49
51
git reset --hard && \
50
52
git clean -dfx && \
51
- git pull origin master
53
+ git fetch origin && \
54
+ git checkout $(HARFBUZZ_GIT_VERSION ) && \
55
+ git submodule sync --recursive && \
56
+ git submodule update --init --recursive
Original file line number Diff line number Diff line change 1
1
#
2
2
# libass
3
3
#
4
+ LIBASS_GIT_VERSION: =643829edd8408ec37182a04040fe5a7bf54dccc3
5
+
4
6
build/lib/libass/configured : lib/libass
5
7
rm -rf build/lib/libass
6
8
cd lib/libass && NOCONFIGURE=1 ./autogen.sh
@@ -34,4 +36,7 @@ git-libass:
34
36
cd lib/libass && \
35
37
git reset --hard && \
36
38
git clean -dfx && \
37
- git pull origin master
39
+ git fetch origin && \
40
+ git checkout $(LIBASS_GIT_VERSION ) && \
41
+ git submodule sync --recursive && \
42
+ git submodule update --init --recursive
You can’t perform that action at this time.
0 commit comments