#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.1 # Package: obs-studio #=========================== # DB commit: f9aede95e4e5157a46ec1323bb7abf8947e8632d # APP commit: e09dc78145b10de9481608254eb2ac99efd0068b #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: obs-studio" echo "Release: 0.2.1" downloadFile() { local filename=$1 echo "Downloading $filename ..." if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl -k -O $filename else wget --no-check-certificate -nc $filename fi } echo "loading environment settings(profile)" . /etc/profile echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi #Creating log directory mkdir -p /var/log/ulfs-packages/obs-studio/ #Saving start timestamp date +%s > /var/log/ulfs-packages/obs-studio/start.time #Going to source directory... cd /sources #Checking dependances... #Checking freetype-stage2... if [ ! -f /var/cache/ulfs-packages/freetype-stage2 ]; then echo "Dependance \"freetype-stage2\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/freetype-stage2/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/freetype-stage2/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/freetype-stage2 ]; then echo "Dependance \"freetype-stage2\" is not installed. Exiting..." exit fi fi #Checking fontconfig... if [ ! -f /var/cache/ulfs-packages/fontconfig ]; then echo "Dependance \"fontconfig\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/fontconfig/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/fontconfig/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/fontconfig ]; then echo "Dependance \"fontconfig\" is not installed. Exiting..." exit fi fi #Checking Xlibs... if [ ! -f /var/cache/ulfs-packages/Xlibs ]; then echo "Dependance \"Xlibs\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/Xlibs/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/Xlibs/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/Xlibs ]; then echo "Dependance \"Xlibs\" is not installed. Exiting..." exit fi fi #Checking alsa-lib... if [ ! -f /var/cache/ulfs-packages/alsa-lib ]; then echo "Dependance \"alsa-lib\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/alsa-lib/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/alsa-lib/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/alsa-lib ]; then echo "Dependance \"alsa-lib\" is not installed. Exiting..." exit fi fi #Checking ffmpeg... if [ ! -f /var/cache/ulfs-packages/ffmpeg ]; then echo "Dependance \"ffmpeg\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/ffmpeg/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/ffmpeg/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/ffmpeg ]; then echo "Dependance \"ffmpeg\" is not installed. Exiting..." exit fi fi #Checking fdk-aac... if [ ! -f /var/cache/ulfs-packages/fdk-aac ]; then echo "Dependance \"fdk-aac\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/fdk-aac/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/fdk-aac/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/fdk-aac ]; then echo "Dependance \"fdk-aac\" is not installed. Exiting..." exit fi fi #Checking libva... if [ ! -f /var/cache/ulfs-packages/libva ]; then echo "Dependance \"libva\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/libva/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/libva/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libva ]; then echo "Dependance \"libva\" is not installed. Exiting..." exit fi fi #Checking speex... if [ ! -f /var/cache/ulfs-packages/speex ]; then echo "Dependance \"speex\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/speex/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/speex/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/speex ]; then echo "Dependance \"speex\" is not installed. Exiting..." exit fi fi #Checking pulseaudio... if [ ! -f /var/cache/ulfs-packages/pulseaudio ]; then echo "Dependance \"pulseaudio\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/pulseaudio/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/pulseaudio/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/pulseaudio ]; then echo "Dependance \"pulseaudio\" is not installed. Exiting..." exit fi fi #Checking v4l-utils... if [ ! -f /var/cache/ulfs-packages/v4l-utils ]; then echo "Dependance \"v4l-utils\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/v4l-utils/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/v4l-utils/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/v4l-utils ]; then echo "Dependance \"v4l-utils\" is not installed. Exiting..." exit fi fi #Checking pipewire... if [ ! -f /var/cache/ulfs-packages/pipewire ]; then echo "Dependance \"pipewire\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/pipewire/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/pipewire/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/pipewire ]; then echo "Dependance \"pipewire\" is not installed. Exiting..." exit fi fi #Checking vlc... if [ ! -f /var/cache/ulfs-packages/vlc ]; then echo "Dependance \"vlc\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/vlc/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/vlc/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/vlc ]; then echo "Dependance \"vlc\" is not installed. Exiting..." exit fi fi #Checking swig... if [ ! -f /var/cache/ulfs-packages/swig ]; then echo "Dependance \"swig\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/swig/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/swig/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/swig ]; then echo "Dependance \"swig\" is not installed. Exiting..." exit fi fi #Checking qt6... if [ ! -f /var/cache/ulfs-packages/qt6 ]; then echo "Dependance \"qt6\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/qt6/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/qt6/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/qt6 ]; then echo "Dependance \"qt6\" is not installed. Exiting..." exit fi fi #Checking LuaJIT... if [ ! -f /var/cache/ulfs-packages/LuaJIT ]; then echo "Dependance \"LuaJIT\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/LuaJIT/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/LuaJIT/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/LuaJIT ]; then echo "Dependance \"LuaJIT\" is not installed. Exiting..." exit fi fi #Checking libglvnd... if [ ! -f /var/cache/ulfs-packages/libglvnd ]; then echo "Dependance \"libglvnd\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/libglvnd/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/libglvnd/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libglvnd ]; then echo "Dependance \"libglvnd\" is not installed. Exiting..." exit fi fi #Checking libvpl... if [ ! -f /var/cache/ulfs-packages/libvpl ]; then echo "Dependance \"libvpl\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.1/libvpl/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.1/libvpl/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libvpl ]; then echo "Dependance \"libvpl\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/obs-studio/download.time #Downloading source package archive... downloadFile https://umvirt.com/linux/downloads/0.2.1/packages/o/obs-studio-30.1.2.tar.gz.md5sum downloadFile https://umvirt.com/linux/downloads/0.2.1/packages/o/obs-studio-30.1.2.tar.gz #Checking source package file existance if [ ! -f obs-studio-30.1.2.tar.gz ]; then echo "Error: Can't find obs-studio-30.1.2.tar.gz. Exiting!" exit fi #Checking source package file checksum if [ -f obs-studio-30.1.2.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c obs-studio-30.1.2.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of obs-studio-30.1.2.tar.gz is wrong. Exiting!" exit fi fi #Downloadning patches... downloadFile https://umvirt.com/linux/downloads/0.2.1/patches/obs-studio-no-browser.patch #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/obs-studio/cleanup.time rm -rfv /sources/obs-studio-30.1.2/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/obs-studio/unpack.time #Extracting tar source package archive with default parameters... tar -xf obs-studio-30.1.2.tar.gz #Checking package directory size after unpack... du -s obs-studio-30.1.2 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/obs-studio/unpack.size #Going to source package directory... cd obs-studio-30.1.2 #Applying patches... patch -Np1 -i ../obs-studio-no-browser.patch #Saving configuration timestamp date +%s > /var/log/ulfs-packages/obs-studio/configure.time #Sleep 1 second sleep 1 if [[ "$ULFS_PKG_DATERESET" == "YES" ]] then #Changing all files creation time (except build configuration files) in source directory to find them after installation find /sources/obs-studio-30.1.2 \! -path "*/configure*" \! -path "*/Makefile*" \! -path "*.make" \! -path "*.m4" \! -path "*.am" \! -path "*.mk" \! -path "*.stamp" \! -path "*gentpl.py" -exec touch -m {} + fi #Running configuration script... echo "loading environment settings(profile)" . /etc/profile echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_configure.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS mkdir -v build && cd build cmake -G Ninja \\ -DENABLE_NEW_MPEGTS_OUTPUT=OFF \\ -DCMAKE_INSTALL_PREFIX=/usr \\ -DENABLE_BROWSER=OFF \\ -DENABLE_PIPEWIRE=OFF \\ -DENABLE_AJA=0 \\ -DENABLE_WEBRTC=0 \\ -DQT_VERSION=6 \\ .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/obs-studio/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/obs-studio/build.time #Running build script... echo "loading environment settings(profile)" . /etc/profile echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_build.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS cd build ninja EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/obs-studio/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/obs-studio/install.time #Running install script... cat > ulfs_install.sh << EOIS cd build ninja install EOIS echo "/sbin/ldconfig" >> ulfs_install.sh USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/obs-studio/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/obs-studio/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/obs-studio/finish.time #Checking package directory size after unpack... cd /sources du -s obs-studio-30.1.2 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/obs-studio/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/obs-studio/files.txt ]; then rm /var/log/ulfs-packages/obs-studio/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt find /sbin -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt find /usr -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt find /etc -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/obs-studio/files.txt find /opt -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt find /lib -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt find /var -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time \! -path "/var/log/ulfs-packages/obs-studio/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/obs-studio/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/obs-studio/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time >> /var/log/ulfs-packages/obs-studio/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/obs-studio/configure.time \! -newer /var/log/ulfs-packages/obs-studio/finish.time \! -path "/var/log/ulfs-packages/obs-studio/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/obs-studio/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/obs-studio else sudo touch /var/cache/ulfs-packages/obs-studio fi #Calculate delta size a=`cat /var/log/ulfs-packages/obs-studio/unpack.size` b=`cat /var/log/ulfs-packages/obs-studio/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/obs-studio/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/obs-studio/start.time` b=`cat /var/log/ulfs-packages/obs-studio/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/obs-studio/download.time` b=`cat /var/log/ulfs-packages/obs-studio/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/obs-studio/configure.time` b=`cat /var/log/ulfs-packages/obs-studio/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/obs-studio/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: obs-studio" echo "Release: 0.2.1" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script