Skip to content

Commit

Permalink
fix: do not build url source plugin on 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Oct 1, 2023
1 parent 2dcdf86 commit 8e0b6d9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions builder/obs-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -261,11 +261,6 @@ libudev-dev libv4l-dev libva-dev libvlc-dev"
#shellcheck disable=SC2086
apt-get -y install --no-install-recommends ${PKG_OBS_GSTREAMER}

PKG_OBS_URL_SOURCE="libidn2-dev libpsl-dev libpugixml-dev libssl-dev"
echo " - URL Source : ${PKG_OBS_URL_SOURCE}" >> "${BUILD_DIR}/obs-manifest.txt"
#shellcheck disable=SC2086
apt-get -y install --no-install-recommends ${PKG_OBS_URL_SOURCE}

echo " - NDI : libndi5-dev" >> "${BUILD_DIR}/obs-manifest.txt"
download_file "https://github.com/obs-ndi/obs-ndi/releases/download/4.11.1/libndi5_5.5.3-1_amd64.deb"
download_file "https://github.com/obs-ndi/obs-ndi/releases/download/4.11.1/libndi5-dev_5.5.3-1_amd64.deb"
Expand All @@ -280,6 +275,11 @@ libudev-dev libv4l-dev libva-dev libvlc-dev"
PKG_OBS_AV1="libaom-dev"
echo " - AV1 : ${PKG_OBS_AV1}" >> "${BUILD_DIR}/obs-manifest.txt"
apt-get -y install --no-install-recommends ${PKG_OBS_AV1}

PKG_OBS_URL_SOURCE="libidn2-dev libpsl-dev libpugixml-dev libssl-dev"
echo " - URL Source : ${PKG_OBS_URL_SOURCE}" >> "${BUILD_DIR}/obs-manifest.txt"
#shellcheck disable=SC2086
apt-get -y install --no-install-recommends ${PKG_OBS_URL_SOURCE}
fi
}

Expand Down Expand Up @@ -470,6 +470,7 @@ function stage_07_plugins_out_tree() {
if [ "${DISTRO_CMP_VER}" -le 2004 ]; then
if [ "${PLUGIN}" == "obs-pipewire-audio-capture" ] || \
[ "${PLUGIN}" == "obs-teleport" ] || \
[ "${PLUGIN}" == "obs-urlsource" ] || \
[ "${PLUGIN}" == "obs-vertical-canvas" ] || \
[ "${PLUGIN}" == "obs-vkcapture" ] || \
[ "${PLUGIN}" == "pixel-art" ]; then
Expand Down

0 comments on commit 8e0b6d9

Please sign in to comment.