#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: gnome-control-center #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: gnome-control-center" 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/gnome-control-center/ #Saving start timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/start.time #Going to source directory... cd /sources #Checking dependances... #Checking krb5... if [ ! -f /var/cache/ulfs-packages/krb5 ]; then echo "Dependance \"krb5\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/krb5/install -O - | bash if [ ! -f /var/cache/ulfs-packages/krb5 ]; then echo "Dependance \"krb5\" is not installed. Exiting..." exit fi fi #Checking shared-mime-info... if [ ! -f /var/cache/ulfs-packages/shared-mime-info ]; then echo "Dependance \"shared-mime-info\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/shared-mime-info/install -O - | bash if [ ! -f /var/cache/ulfs-packages/shared-mime-info ]; then echo "Dependance \"shared-mime-info\" is not installed. Exiting..." exit fi fi #Checking ModemManager... if [ ! -f /var/cache/ulfs-packages/ModemManager ]; then echo "Dependance \"ModemManager\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/ModemManager/install -O - | bash if [ ! -f /var/cache/ulfs-packages/ModemManager ]; then echo "Dependance \"ModemManager\" is not installed. Exiting..." exit fi fi #Checking gnome-online-accounts... if [ ! -f /var/cache/ulfs-packages/gnome-online-accounts ]; then echo "Dependance \"gnome-online-accounts\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gnome-online-accounts/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gnome-online-accounts ]; then echo "Dependance \"gnome-online-accounts\" is not installed. Exiting..." exit fi fi #Checking libgtop... if [ ! -f /var/cache/ulfs-packages/libgtop ]; then echo "Dependance \"libgtop\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libgtop/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libgtop ]; then echo "Dependance \"libgtop\" is not installed. Exiting..." exit fi fi #Checking gsound... if [ ! -f /var/cache/ulfs-packages/gsound ]; then echo "Dependance \"gsound\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gsound/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gsound ]; then echo "Dependance \"gsound\" is not installed. Exiting..." exit fi fi #Checking udisks... if [ ! -f /var/cache/ulfs-packages/udisks ]; then echo "Dependance \"udisks\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/udisks/install -O - | bash if [ ! -f /var/cache/ulfs-packages/udisks ]; then echo "Dependance \"udisks\" is not installed. Exiting..." exit fi fi #Checking libadwaita... if [ ! -f /var/cache/ulfs-packages/libadwaita ]; then echo "Dependance \"libadwaita\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libadwaita/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libadwaita ]; then echo "Dependance \"libadwaita\" is not installed. Exiting..." exit fi fi #Checking gnome-bluetooth... if [ ! -f /var/cache/ulfs-packages/gnome-bluetooth ]; then echo "Dependance \"gnome-bluetooth\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gnome-bluetooth/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gnome-bluetooth ]; then echo "Dependance \"gnome-bluetooth\" is not installed. Exiting..." exit fi fi #Checking cups... if [ ! -f /var/cache/ulfs-packages/cups ]; then echo "Dependance \"cups\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/cups/install -O - | bash if [ ! -f /var/cache/ulfs-packages/cups ]; then echo "Dependance \"cups\" is not installed. Exiting..." exit fi fi #Checking gnome-settings-daemon... if [ ! -f /var/cache/ulfs-packages/gnome-settings-daemon ]; then echo "Dependance \"gnome-settings-daemon\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gnome-settings-daemon/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gnome-settings-daemon ]; then echo "Dependance \"gnome-settings-daemon\" is not installed. Exiting..." exit fi fi #Checking accountsservice... if [ ! -f /var/cache/ulfs-packages/accountsservice ]; then echo "Dependance \"accountsservice\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/accountsservice/install -O - | bash if [ ! -f /var/cache/ulfs-packages/accountsservice ]; then echo "Dependance \"accountsservice\" is not installed. Exiting..." exit fi fi #Checking colord-gtk... if [ ! -f /var/cache/ulfs-packages/colord-gtk ]; then echo "Dependance \"colord-gtk\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/colord-gtk/install -O - | bash if [ ! -f /var/cache/ulfs-packages/colord-gtk ]; then echo "Dependance \"colord-gtk\" is not installed. Exiting..." exit fi fi #Checking libpwquality... if [ ! -f /var/cache/ulfs-packages/libpwquality ]; then echo "Dependance \"libpwquality\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libpwquality/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libpwquality ]; then echo "Dependance \"libpwquality\" is not installed. Exiting..." exit fi fi #Checking samba... if [ ! -f /var/cache/ulfs-packages/samba ]; then echo "Dependance \"samba\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/samba/install -O - | bash if [ ! -f /var/cache/ulfs-packages/samba ]; then echo "Dependance \"samba\" is not installed. Exiting..." exit fi fi #Checking libnma... if [ ! -f /var/cache/ulfs-packages/libnma ]; then echo "Dependance \"libnma\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libnma/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libnma ]; then echo "Dependance \"libnma\" is not installed. Exiting..." exit fi fi #Checking ibus... if [ ! -f /var/cache/ulfs-packages/ibus ]; then echo "Dependance \"ibus\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/ibus/install -O - | bash if [ ! -f /var/cache/ulfs-packages/ibus ]; then echo "Dependance \"ibus\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/gnome-control-center-46.4.tar.xz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/gnome-control-center-46.4.tar.xz #Checking source package file existance if [ ! -f gnome-control-center-46.4.tar.xz ]; then echo "Error: Can't find gnome-control-center-46.4.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f gnome-control-center-46.4.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c gnome-control-center-46.4.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of gnome-control-center-46.4.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/cleanup.time rm -rfv /sources/gnome-control-center-46.4/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/unpack.time #Extracting tar source package archive with default parameters... tar -xf gnome-control-center-46.4.tar.xz #Checking package directory size after unpack... du -s gnome-control-center-46.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gnome-control-center/unpack.size #Going to source package directory... cd gnome-control-center-46.4 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/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/gnome-control-center-46.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 .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/gnome-control-center/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/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/gnome-control-center/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/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/gnome-control-center/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/gnome-control-center/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/gnome-control-center/finish.time #Checking package directory size after unpack... cd /sources du -s gnome-control-center-46.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gnome-control-center/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/gnome-control-center/files.txt ]; then rm /var/log/ulfs-packages/gnome-control-center/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt find /sbin -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt find /usr -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt find /etc -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt find /opt -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt find /lib -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt find /var -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time \! -path "/var/log/ulfs-packages/gnome-control-center/*" >> /var/log/ulfs-packages/gnome-control-center/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time >> /var/log/ulfs-packages/gnome-control-center/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/gnome-control-center/configure.time \! -newer /var/log/ulfs-packages/gnome-control-center/finish.time \! -path "/var/log/ulfs-packages/gnome-control-center/*" >> /var/log/ulfs-packages/gnome-control-center/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/gnome-control-center else sudo touch /var/cache/ulfs-packages/gnome-control-center fi #Calculate delta size a=`cat /var/log/ulfs-packages/gnome-control-center/unpack.size` b=`cat /var/log/ulfs-packages/gnome-control-center/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/gnome-control-center/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/gnome-control-center/start.time` b=`cat /var/log/ulfs-packages/gnome-control-center/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/gnome-control-center/download.time` b=`cat /var/log/ulfs-packages/gnome-control-center/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/gnome-control-center/configure.time` b=`cat /var/log/ulfs-packages/gnome-control-center/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/gnome-control-center/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: gnome-control-center" 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