FFmpeg-Builds/scripts.d/45-libudfread.sh

37 lines
699 B
Bash
Raw Permalink Normal View History

2020-09-06 14:04:48 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://code.videolan.org/videolan/libudfread.git"
SCRIPT_COMMIT="b3e6936a23f8af30a0be63d88f4695bdc0ea26e1"
2020-09-06 14:04:48 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2020-09-06 14:04:48 +00:00
2021-04-04 21:20:31 +00:00
./bootstrap
2020-09-06 14:04:48 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-06 14:04:48 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
2020-09-06 14:04:48 +00:00
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
2020-11-10 15:33:56 +00:00
ln -s libudfread.pc "$FFBUILD_PREFIX"/lib/pkgconfig/udfread.pc
2020-09-06 14:04:48 +00:00
}