Skip to content

Commit 4fab2c3

Browse files
committed
format code
1 parent 6a128ef commit 4fab2c3

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

.github/workflows/all.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ jobs:
3434
.github/workflows/onestep.sh freetype all
3535
echo '------compile harfbuzz------------------------------------'
3636
rm -rf build || git reset --hard || git pull origin
37-
./main.sh install -p ios -l 'freetype'
38-
./main.sh install -p tvos -l 'freetype'
39-
./main.sh install -p macos -l 'freetype'
40-
./main.sh install -p android -l 'freetype'
37+
./main.sh install -l 'freetype' -p ios
38+
./main.sh install -l 'freetype' -p tvos
39+
./main.sh install -l 'freetype' -p macos
40+
./main.sh install -l 'freetype' -p android
4141
.github/workflows/onestep.sh harfbuzz all
4242
echo '------compile ass------------------------------------'
4343
rm -rf build || git reset --hard || git pull origin
44-
./main.sh install -p ios -l 'harfbuzz fribidi unibreak'
45-
./main.sh install -p tvos -l 'harfbuzz fribidi unibreak'
46-
./main.sh install -p macos -l 'harfbuzz fribidi unibreak'
47-
./main.sh install -p android -l 'harfbuzz fribidi unibreak fontconfig'
44+
./main.sh install -l 'harfbuzz fribidi unibreak' -p ios
45+
./main.sh install -l 'harfbuzz fribidi unibreak' -p tvos
46+
./main.sh install -l 'harfbuzz fribidi unibreak' -p macos
47+
./main.sh install -l 'harfbuzz fribidi unibreak fontconfig' -p android
4848
.github/workflows/onestep.sh ass all
4949
echo '------compile opus------------------------------------'
5050
rm -rf build || git reset --hard || git pull origin
@@ -69,8 +69,8 @@ jobs:
6969
.github/workflows/onestep.sh smb2 all
7070
echo '------compile ffmpeg------------------------------------'
7171
rm -rf build || git reset --hard || git pull origin
72-
./main.sh install -p ios -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
73-
./main.sh install -p tvos -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
74-
./main.sh install -p macos -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
75-
./main.sh install -p android -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
72+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p ios
73+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p tvos
74+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p macos
75+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p android
7676
.github/workflows/onestep.sh ffmpeg all

.github/workflows/ffmpeg.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
uses: actions/checkout@v4
2525
- name: Install denpendencies
2626
run: |
27-
./main.sh install -p android -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
28-
./main.sh install -p ios -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
29-
./main.sh install -p tvos -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
30-
./main.sh install -p macos -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
27+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p ios
28+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p tvos
29+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p macos
30+
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p android
3131
- name: One Step
3232
run: .github/workflows/onestep.sh ffmpeg all

.github/workflows/harfbuzz.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
uses: actions/checkout@v4
2525
- name: Install denpendencies
2626
run: |
27-
./main.sh install -p ios -l 'freetype'
28-
./main.sh install -p tvos -l 'freetype'
29-
./main.sh install -p macos -l 'freetype'
30-
./main.sh install -p android -l 'freetype'
27+
./main.sh install -l 'freetype' -p ios
28+
./main.sh install -l 'freetype' -p tvos
29+
./main.sh install -l 'freetype' -p macos
30+
./main.sh install -l 'freetype' -p android
3131
- name: One Step
3232
run: .github/workflows/onestep.sh harfbuzz all

configs/ffconfig/auto-detect-third-libs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ echo "----------------------"
100100
pkg-config --libs libsmb2 --silence-errors >/dev/null && enable_smb2=1
101101

102102
if [[ $enable_smb2 ]];then
103-
echo "[✅] --enable-libsmb2 : $(pkg-config --modversion libsm2)"
103+
echo "[✅] --enable-libsmb2 : $(pkg-config --modversion libsmb2)"
104104
THIRD_CFG_FLAGS="$THIRD_CFG_FLAGS --enable-libsmb2 --enable-protocol=libsmb2"
105105
else
106106
echo "[❌] --disable-libsmb2"
@@ -121,7 +121,7 @@ echo "----------------------"
121121
pkg-config --libs dvdread --silence-errors >/dev/null && enable_dvdread=1
122122

123123
if [[ $enable_dvdread ]];then
124-
echo "[✅] --enable-libdvdread"
124+
echo "[✅] --enable-libdvdread : $(pkg-config --modversion dvdread)"
125125
THIRD_CFG_FLAGS="$THIRD_CFG_FLAGS --enable-libdvdread --enable-protocol=dvd"
126126
else
127127
echo "[❌] --disable-libdvdread"
@@ -132,7 +132,7 @@ echo "----------------------"
132132
pkg-config --libs uavs3d --silence-errors >/dev/null && enable_uavs3d=1
133133

134134
if [[ $enable_uavs3d ]];then
135-
echo "[✅] --enable-libuavs3d"
135+
echo "[✅] --enable-libuavs3d : $(pkg-config --modversion uavs3d)"
136136
THIRD_CFG_FLAGS="$THIRD_CFG_FLAGS --enable-libuavs3d --enable-decoder=libuavs3d"
137137
else
138138
echo "[❌] --disable-libuavs3d"

0 commit comments

Comments
 (0)