mirror of
https://git.bs.b-eit.de/bucde/notes.git
synced 2024-11-22 02:03:07 +01:00
37 lines
937 B
Bash
Executable File
37 lines
937 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "##########################################################################################"
|
|
echo "# install script for xrdp-pulseaudio module"
|
|
echo "# Dennis Buchhorn - code@b-eit.de"
|
|
echo "##########################################################################################"
|
|
echo ""
|
|
|
|
if ! [[ $(id -u) == "0" ]]; then
|
|
echo "The script need to be run as root!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $SUDO_USER ]]; then
|
|
real_user=$SUDO_USER
|
|
else
|
|
real_user=$(whoami)
|
|
fi
|
|
|
|
apt update
|
|
|
|
apt install build-essential dpkg-dev libpulse-dev git autoconf libtool
|
|
|
|
BUILD_DIR=$(mktemp -d)
|
|
|
|
git clone https://git.bs.b-eit.de/bucde/notes_pulseaudio-module-xrdp.git "$BUILD_DIR/xrdp_pulseaudio_module"
|
|
cd "$BUILD_DIR/xrdp_pulseaudio_module"
|
|
git checkout custom
|
|
|
|
scripts/install_pulseaudio_sources_apt_wrapper.sh
|
|
./bootstrap
|
|
./configure PULSE_DIR=$BUILD_DIR/xrdp_pulseaudio_module/pulseaudio.src
|
|
make
|
|
make install
|
|
|
|
rm -rf $BUILD_DIR
|