-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: update mpv to 0.37 and add libplacebo
mpv 0.36.0 -> 0.37.0 libplacebo null -> 6.338.1 Also remove patch to restore mpv default sub selection behavior
- Loading branch information
1 parent
fc7de4a
commit be46a78
Showing
5 changed files
with
32 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
buildscripts/patches/mpv/mpv_restore_default_sub_selection_behavior.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash -e | ||
|
||
. ../../include/depinfo.sh | ||
. ../../include/path.sh | ||
|
||
build=_build$ndk_suffix | ||
|
||
if [ "$1" == "build" ]; then | ||
true | ||
elif [ "$1" == "clean" ]; then | ||
rm -rf $build | ||
exit 0 | ||
else | ||
exit 255 | ||
fi | ||
|
||
unset CC CXX | ||
meson setup $build --cross-file "$prefix_dir"/crossfile.txt \ | ||
-Dvulkan=disabled -Ddemos=false | ||
|
||
ninja -C $build -j$cores | ||
DESTDIR="$prefix_dir" ninja -C $build install | ||
|
||
# add missing library for static linking | ||
# this isn't "-lstdc++" due to a meson bug: https://github.com/mesonbuild/meson/issues/11300 | ||
${SED:-sed} '/^Libs:/ s|$| -lc++|' "$prefix_dir/lib/pkgconfig/libplacebo.pc" -i |