Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency updates. #84

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build-ffmpeg
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ if ! isLinux; then

download "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz"

execute ./configure --silent --prefix="${WORKSPACE}" --with-pc-path="${WORKSPACE}/lib/pkgconfig:/usr/lib/${TARGET_ARCH}-${OSTYPE}/pkgconfig" --with-internal-glib
execute ./configure CFLAGS="-g -O2 -Wno-int-conversion" --silent --prefix="${WORKSPACE}" --with-pc-path="${WORKSPACE}/lib/pkgconfig:/usr/lib/${TARGET_ARCH}-${OSTYPE}/pkgconfig" --with-internal-glib
execute make -j ${MJOBS}
execute make install

Expand Down Expand Up @@ -705,13 +705,13 @@ if command_exists "python3"; then
if command_exists "pip3"; then

# meson and ninja can be installed via pip3
execute pip3 install pip setuptools --quiet --upgrade --no-cache-dir --disable-pip-version-check
execute /usr/bin/pip3 install pip setuptools --quiet --upgrade --no-cache-dir --disable-pip-version-check

for r in meson ninja; do

if ! command_exists ${r}; then

execute pip3 install ${r} --quiet --upgrade --no-cache-dir --disable-pip-version-check
execute /usr/bin/pip3 install ${r} --quiet --upgrade --no-cache-dir --disable-pip-version-check
fi

export PATH=${PATH}:~/Library/Python/3.9/bin
Expand Down
Loading
Loading