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

69 lines
1.6 KiB
Bash
Raw Normal View History

2021-12-17 23:21:43 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git"
2023-05-29 12:10:36 +00:00
SCRIPT_COMMIT="e96d278bfc514f290b60c9e924fabc1c772e1689"
2021-12-17 23:21:43 +00:00
ffbuild_enabled() {
[[ $TARGET == linux* ]] || return 1
return 0
}
ffbuild_dockerdl() {
2022-07-12 15:54:12 +00:00
git clone --filter=blob:none "$SCRIPT_REPO" pa
2021-12-17 23:21:43 +00:00
cd pa
2022-07-12 15:54:12 +00:00
git checkout "$SCRIPT_COMMIT"
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/pa
2021-12-17 23:21:43 +00:00
# Kill build of utils and their sndfile dep
echo > src/utils/meson.build
echo > src/pulsecore/sndfile-util.c
echo > src/pulsecore/sndfile-util.h
sed -ri -e 's/(sndfile_dep = .*)\)/\1, required : false)/' meson.build
2022-06-13 16:55:53 +00:00
sed -ri -e 's/shared_library/library/g' src/meson.build src/pulse/meson.build
2021-12-17 23:21:43 +00:00
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
--buildtype=release
2021-12-24 14:05:36 +00:00
--default-library=static
2021-12-17 23:21:43 +00:00
-Ddaemon=false
-Dclient=true
-Ddoxygen=false
-Dgcov=false
-Dman=false
-Dtests=false
-Dipv6=true
-Dopenssl=enabled
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--cross-file=/cross.meson
)
else
echo "Unknown target"
return -1
fi
meson "${myconf[@]}" ..
ninja -j"$(nproc)"
ninja install
rm -r "$FFBUILD_PREFIX"/share
echo "Libs.private: -ldl -lrt" >> "$FFBUILD_PREFIX"/lib/pkgconfig/libpulse.pc
echo "Libs.private: -ldl -lrt" >> "$FFBUILD_PREFIX"/lib/pkgconfig/libpulse-simple.pc
}
ffbuild_configure() {
echo --enable-libpulse
}
ffbuild_unconfigure() {
echo --disable-libpulse
}