Skip to content

Commit c05a79a

Browse files
committed
Ffmpeg Libs
1 parent 6a5d25f commit c05a79a

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/build.yml

+12-11
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ jobs:
5353
5454
brew install "${REQUIRED_PACKAGES[@]}"
5555
56-
57-
- name: Homebrew Libs [DEBUG]
58-
run: |
59-
ls $(brew --prefix ffmpeg@6)
60-
$(brew --prefix ffmpeg@6)/lib
61-
62-
6356
- name: Add bison & cx-llvm to $PATH
6457
run: |
6558
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
@@ -205,10 +198,6 @@ jobs:
205198
- name: Copy External Libs
206199
run: |
207200
LIBS=(
208-
"libavfilter.9"
209-
"libavformat.60"
210-
"libavcodec.60"
211-
"libavutil.58"
212201
"libfreetype"
213202
"libfreetype.6"
214203
"libgio-2.0.0"
@@ -256,6 +245,13 @@ jobs:
256245
"libxcb.1"
257246
)
258247
248+
FFMPEG_LIBS=(
249+
"libavfilter.9"
250+
"libavformat.60"
251+
"libavcodec.60"
252+
"libavutil.58"
253+
)
254+
259255
GSTREAMER_LIBS=(
260256
"libgstapplemedia"
261257
"libgstasf"
@@ -283,6 +279,11 @@ jobs:
283279
cp -Lr $(brew --prefix)/lib/"$i".dylib Libraries/Wine/lib
284280
done
285281
282+
for i in "${FFMPEG_LIBS[@]}"
283+
do
284+
cp -Lr $(brew --prefix ffmpeg@6)/lib/"$i".dylib Libraries/Wine/lib
285+
done
286+
286287
mkdir Libraries/Wine/lib/gstreamer-1.0
287288
288289
for i in "${GSTREAMER_LIBS[@]}"

0 commit comments

Comments
 (0)