#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: audacious-plugins #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: audacious-plugins" 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/audacious-plugins/ #Saving start timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/start.time #Going to source directory... cd /sources #Checking dependances... #Checking libxml2... if [ ! -f /var/cache/ulfs-packages/libxml2 ]; then echo "Dependance \"libxml2\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libxml2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libxml2 ]; then echo "Dependance \"libxml2\" is not installed. Exiting..." exit fi fi #Checking curl... if [ ! -f /var/cache/ulfs-packages/curl ]; then echo "Dependance \"curl\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/curl/install -O - | bash if [ ! -f /var/cache/ulfs-packages/curl ]; then echo "Dependance \"curl\" 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 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 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 flac... if [ ! -f /var/cache/ulfs-packages/flac ]; then echo "Dependance \"flac\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/flac/install -O - | bash if [ ! -f /var/cache/ulfs-packages/flac ]; then echo "Dependance \"flac\" is not installed. Exiting..." exit fi fi #Checking mpg123... if [ ! -f /var/cache/ulfs-packages/mpg123 ]; then echo "Dependance \"mpg123\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/mpg123/install -O - | bash if [ ! -f /var/cache/ulfs-packages/mpg123 ]; then echo "Dependance \"mpg123\" is not installed. Exiting..." exit fi fi #Checking libsndfile... if [ ! -f /var/cache/ulfs-packages/libsndfile ]; then echo "Dependance \"libsndfile\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libsndfile/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libsndfile ]; then echo "Dependance \"libsndfile\" 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..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/pulseaudio/install -O - | bash if [ ! -f /var/cache/ulfs-packages/pulseaudio ]; then echo "Dependance \"pulseaudio\" is not installed. Exiting..." exit fi fi #Checking libcdio... if [ ! -f /var/cache/ulfs-packages/libcdio ]; then echo "Dependance \"libcdio\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libcdio/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libcdio ]; then echo "Dependance \"libcdio\" is not installed. Exiting..." exit fi fi #Checking libnotify... if [ ! -f /var/cache/ulfs-packages/libnotify ]; then echo "Dependance \"libnotify\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libnotify/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libnotify ]; then echo "Dependance \"libnotify\" 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..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/pipewire/install -O - | bash if [ ! -f /var/cache/ulfs-packages/pipewire ]; then echo "Dependance \"pipewire\" is not installed. Exiting..." exit fi fi #Checking ALSA... if [ ! -f /var/cache/ulfs-packages/ALSA ]; then echo "Dependance \"ALSA\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/ALSA/install -O - | bash if [ ! -f /var/cache/ulfs-packages/ALSA ]; then echo "Dependance \"ALSA\" is not installed. Exiting..." exit fi fi #Checking neon... if [ ! -f /var/cache/ulfs-packages/neon ]; then echo "Dependance \"neon\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/neon/install -O - | bash if [ ! -f /var/cache/ulfs-packages/neon ]; then echo "Dependance \"neon\" is not installed. Exiting..." exit fi fi #Checking audacious-app... if [ ! -f /var/cache/ulfs-packages/audacious-app ]; then echo "Dependance \"audacious-app\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/audacious-app/install -O - | bash if [ ! -f /var/cache/ulfs-packages/audacious-app ]; then echo "Dependance \"audacious-app\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/a/audacious-plugins-4.4.tar.bz2.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/a/audacious-plugins-4.4.tar.bz2 #Checking source package file existance if [ ! -f audacious-plugins-4.4.tar.bz2 ]; then echo "Error: Can't find audacious-plugins-4.4.tar.bz2. Exiting!" exit fi #Checking source package file checksum if [ -f audacious-plugins-4.4.tar.bz2.md5sum ]; then MD5=`LANG=C md5sum -c audacious-plugins-4.4.tar.bz2.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of audacious-plugins-4.4.tar.bz2 is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/cleanup.time rm -rfv /sources/audacious-plugins-4.4/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/unpack.time #Extracting tar source package archive with default parameters... tar -xf audacious-plugins-4.4.tar.bz2 #Checking package directory size after unpack... du -s audacious-plugins-4.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/audacious-plugins/unpack.size #Going to source package directory... cd audacious-plugins-4.4 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/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/audacious-plugins-4.4 \! -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 build && cd build && meson setup \\ --prefix=/usr \\ --buildtype=release \\ -D gtk=true \\ -D qt=true \\ .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/audacious-plugins/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/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/audacious-plugins/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/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/audacious-plugins/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/audacious-plugins/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/audacious-plugins/finish.time #Checking package directory size after unpack... cd /sources du -s audacious-plugins-4.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/audacious-plugins/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/audacious-plugins/files.txt ]; then rm /var/log/ulfs-packages/audacious-plugins/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt find /sbin -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt find /usr -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt find /etc -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt find /opt -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt find /lib -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt find /var -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time \! -path "/var/log/ulfs-packages/audacious-plugins/*" >> /var/log/ulfs-packages/audacious-plugins/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time >> /var/log/ulfs-packages/audacious-plugins/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/audacious-plugins/configure.time \! -newer /var/log/ulfs-packages/audacious-plugins/finish.time \! -path "/var/log/ulfs-packages/audacious-plugins/*" >> /var/log/ulfs-packages/audacious-plugins/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/audacious-plugins else sudo touch /var/cache/ulfs-packages/audacious-plugins fi #Calculate delta size a=`cat /var/log/ulfs-packages/audacious-plugins/unpack.size` b=`cat /var/log/ulfs-packages/audacious-plugins/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/audacious-plugins/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/audacious-plugins/start.time` b=`cat /var/log/ulfs-packages/audacious-plugins/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/audacious-plugins/download.time` b=`cat /var/log/ulfs-packages/audacious-plugins/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/audacious-plugins/configure.time` b=`cat /var/log/ulfs-packages/audacious-plugins/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/audacious-plugins/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: audacious-plugins" 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