#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: shotcut #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: shotcut" echo "Release: 0.2.2" 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/shotcut/ #Saving start timestamp date +%s > /var/log/ulfs-packages/shotcut/start.time #Going to source directory... cd /sources #Checking dependances... #Checking libepoxy... if [ ! -f /var/cache/ulfs-packages/libepoxy ]; then echo "Dependance \"libepoxy\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libepoxy/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libepoxy ]; then echo "Dependance \"libepoxy\" is not installed. Exiting..." exit fi fi #Checking cairo... if [ ! -f /var/cache/ulfs-packages/cairo ]; then echo "Dependance \"cairo\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/cairo/install -O - | bash if [ ! -f /var/cache/ulfs-packages/cairo ]; then echo "Dependance \"cairo\" is not installed. Exiting..." exit fi fi #Checking libexif... if [ ! -f /var/cache/ulfs-packages/libexif ]; then echo "Dependance \"libexif\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libexif/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libexif ]; then echo "Dependance \"libexif\" is not installed. Exiting..." exit fi fi #Checking libogg... if [ ! -f /var/cache/ulfs-packages/libogg ]; then echo "Dependance \"libogg\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libogg/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libogg ]; then echo "Dependance \"libogg\" is not installed. Exiting..." exit fi fi #Checking libvorbis... if [ ! -f /var/cache/ulfs-packages/libvorbis ]; then echo "Dependance \"libvorbis\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libvorbis/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libvorbis ]; then echo "Dependance \"libvorbis\" is not installed. Exiting..." exit fi fi #Checking libtheora... if [ ! -f /var/cache/ulfs-packages/libtheora ]; then echo "Dependance \"libtheora\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libtheora/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libtheora ]; then echo "Dependance \"libtheora\" is not installed. Exiting..." exit fi fi #Checking SDL2... if [ ! -f /var/cache/ulfs-packages/SDL2 ]; then echo "Dependance \"SDL2\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/SDL2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/SDL2 ]; then echo "Dependance \"SDL2\" is not installed. Exiting..." exit fi fi #Checking libwebp... if [ ! -f /var/cache/ulfs-packages/libwebp ]; then echo "Dependance \"libwebp\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libwebp/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libwebp ]; then echo "Dependance \"libwebp\" is not installed. Exiting..." exit fi fi #Checking libaom... if [ ! -f /var/cache/ulfs-packages/libaom ]; then echo "Dependance \"libaom\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libaom/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libaom ]; then echo "Dependance \"libaom\" 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..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/ffmpeg/install -O - | bash if [ ! -f /var/cache/ulfs-packages/ffmpeg ]; then echo "Dependance \"ffmpeg\" is not installed. Exiting..." exit fi fi #Checking lame... if [ ! -f /var/cache/ulfs-packages/lame ]; then echo "Dependance \"lame\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/lame/install -O - | bash if [ ! -f /var/cache/ulfs-packages/lame ]; then echo "Dependance \"lame\" is not installed. Exiting..." exit fi fi #Checking opus... if [ ! -f /var/cache/ulfs-packages/opus ]; then echo "Dependance \"opus\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/opus/install -O - | bash if [ ! -f /var/cache/ulfs-packages/opus ]; then echo "Dependance \"opus\" is not installed. Exiting..." exit fi fi #Checking x264... if [ ! -f /var/cache/ulfs-packages/x264 ]; then echo "Dependance \"x264\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/x264/install -O - | bash if [ ! -f /var/cache/ulfs-packages/x264 ]; then echo "Dependance \"x264\" is not installed. Exiting..." exit fi fi #Checking x265... if [ ! -f /var/cache/ulfs-packages/x265 ]; then echo "Dependance \"x265\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/x265/install -O - | bash if [ ! -f /var/cache/ulfs-packages/x265 ]; then echo "Dependance \"x265\" is not installed. Exiting..." exit fi fi #Checking dav1d... if [ ! -f /var/cache/ulfs-packages/dav1d ]; then echo "Dependance \"dav1d\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/dav1d/install -O - | bash if [ ! -f /var/cache/ulfs-packages/dav1d ]; then echo "Dependance \"dav1d\" 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..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/qt6/install -O - | bash if [ ! -f /var/cache/ulfs-packages/qt6 ]; then echo "Dependance \"qt6\" is not installed. Exiting..." exit fi fi #Checking fftw-single... if [ ! -f /var/cache/ulfs-packages/fftw-single ]; then echo "Dependance \"fftw-single\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/fftw-single/install -O - | bash if [ ! -f /var/cache/ulfs-packages/fftw-single ]; then echo "Dependance \"fftw-single\" is not installed. Exiting..." exit fi fi #Checking fftw-double... if [ ! -f /var/cache/ulfs-packages/fftw-double ]; then echo "Dependance \"fftw-double\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/fftw-double/install -O - | bash if [ ! -f /var/cache/ulfs-packages/fftw-double ]; then echo "Dependance \"fftw-double\" is not installed. Exiting..." exit fi fi #Checking fftw-longdouble... if [ ! -f /var/cache/ulfs-packages/fftw-longdouble ]; then echo "Dependance \"fftw-longdouble\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/fftw-longdouble/install -O - | bash if [ ! -f /var/cache/ulfs-packages/fftw-longdouble ]; then echo "Dependance \"fftw-longdouble\" is not installed. Exiting..." exit fi fi #Checking fftw-quad... if [ ! -f /var/cache/ulfs-packages/fftw-quad ]; then echo "Dependance \"fftw-quad\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/fftw-quad/install -O - | bash if [ ! -f /var/cache/ulfs-packages/fftw-quad ]; then echo "Dependance \"fftw-quad\" is not installed. Exiting..." exit fi fi #Checking mlt... if [ ! -f /var/cache/ulfs-packages/mlt ]; then echo "Dependance \"mlt\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/mlt/install -O - | bash if [ ! -f /var/cache/ulfs-packages/mlt ]; then echo "Dependance \"mlt\" is not installed. Exiting..." exit fi fi #Checking frei0r-plugins... if [ ! -f /var/cache/ulfs-packages/frei0r-plugins ]; then echo "Dependance \"frei0r-plugins\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/frei0r-plugins/install -O - | bash if [ ! -f /var/cache/ulfs-packages/frei0r-plugins ]; then echo "Dependance \"frei0r-plugins\" is not installed. Exiting..." exit fi fi #Checking glaxnimate... if [ ! -f /var/cache/ulfs-packages/glaxnimate ]; then echo "Dependance \"glaxnimate\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/glaxnimate/install -O - | bash if [ ! -f /var/cache/ulfs-packages/glaxnimate ]; then echo "Dependance \"glaxnimate\" is not installed. Exiting..." exit fi fi #Checking ladspa... if [ ! -f /var/cache/ulfs-packages/ladspa ]; then echo "Dependance \"ladspa\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/ladspa/install -O - | bash if [ ! -f /var/cache/ulfs-packages/ladspa ]; then echo "Dependance \"ladspa\" is not installed. Exiting..." exit fi fi #Checking cmt... if [ ! -f /var/cache/ulfs-packages/cmt ]; then echo "Dependance \"cmt\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/cmt/install -O - | bash if [ ! -f /var/cache/ulfs-packages/cmt ]; then echo "Dependance \"cmt\" is not installed. Exiting..." exit fi fi #Checking swh-ladspa... if [ ! -f /var/cache/ulfs-packages/swh-ladspa ]; then echo "Dependance \"swh-ladspa\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/swh-ladspa/install -O - | bash if [ ! -f /var/cache/ulfs-packages/swh-ladspa ]; then echo "Dependance \"swh-ladspa\" is not installed. Exiting..." exit fi fi #Checking movit... if [ ! -f /var/cache/ulfs-packages/movit ]; then echo "Dependance \"movit\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/movit/install -O - | bash if [ ! -f /var/cache/ulfs-packages/movit ]; then echo "Dependance \"movit\" is not installed. Exiting..." exit fi fi #Checking jack2... if [ ! -f /var/cache/ulfs-packages/jack2 ]; then echo "Dependance \"jack2\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/jack2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/jack2 ]; then echo "Dependance \"jack2\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/shotcut/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/s/shotcut-24.04.28.tar.gz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/s/shotcut-24.04.28.tar.gz #Checking source package file existance if [ ! -f shotcut-24.04.28.tar.gz ]; then echo "Error: Can't find shotcut-24.04.28.tar.gz. Exiting!" exit fi #Checking source package file checksum if [ -f shotcut-24.04.28.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c shotcut-24.04.28.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of shotcut-24.04.28.tar.gz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/shotcut/cleanup.time rm -rfv /sources/shotcut-24.04.28/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/shotcut/unpack.time #Extracting tar source package archive with default parameters... tar -xf shotcut-24.04.28.tar.gz #Checking package directory size after unpack... du -s shotcut-24.04.28 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/shotcut/unpack.size #Going to source package directory... cd shotcut-24.04.28 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/shotcut/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/shotcut-24.04.28 \! -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 "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 \\ -DCMAKE_INSTALL_PREFIX=/usr \\ -DCMAKE_BUILD_TYPE=Release \\ .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/shotcut/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/shotcut/build.time #Running build script... 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/shotcut/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/shotcut/install.time #Running install script... cat > ulfs_install.sh << EOIS cd build ninja install EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/shotcut/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/shotcut/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/shotcut/finish.time #Checking package directory size after unpack... cd /sources du -s shotcut-24.04.28 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/shotcut/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/shotcut/files.txt ]; then rm /var/log/ulfs-packages/shotcut/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt find /sbin -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt find /usr -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt find /etc -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt find /opt -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt find /lib -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt find /var -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time \! -path "/var/log/ulfs-packages/shotcut/*" >> /var/log/ulfs-packages/shotcut/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time >> /var/log/ulfs-packages/shotcut/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/shotcut/configure.time \! -newer /var/log/ulfs-packages/shotcut/finish.time \! -path "/var/log/ulfs-packages/shotcut/*" >> /var/log/ulfs-packages/shotcut/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/shotcut else sudo touch /var/cache/ulfs-packages/shotcut fi #Calculate delta size a=`cat /var/log/ulfs-packages/shotcut/unpack.size` b=`cat /var/log/ulfs-packages/shotcut/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/shotcut/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/shotcut/start.time` b=`cat /var/log/ulfs-packages/shotcut/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/shotcut/download.time` b=`cat /var/log/ulfs-packages/shotcut/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/shotcut/configure.time` b=`cat /var/log/ulfs-packages/shotcut/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/shotcut/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: shotcut" echo "Release: 0.2.2" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script