#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2 # Package: mutter #=========================== # DB commit: eeb5b556770c9a541df710c0fd927901d6de9d66 # APP commit: e09dc78145b10de9481608254eb2ac99efd0068b #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: mutter" echo "Release: 0.2" 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/mutter/ #Saving start timestamp date +%s > /var/log/ulfs-packages/mutter/start.time #Going to source directory... cd /sources #Checking dependances... #Checking gobject-introspection... if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then echo "Dependance \"gobject-introspection\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2/gobject-introspection/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/gobject-introspection/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then echo "Dependance \"gobject-introspection\" is not installed. Exiting..." exit fi fi #Checking libxcvt... if [ ! -f /var/cache/ulfs-packages/libxcvt ]; then echo "Dependance \"libxcvt\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2/libxcvt/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/libxcvt/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libxcvt ]; then echo "Dependance \"libxcvt\" is not installed. Exiting..." exit fi fi #Checking startup-notification... if [ ! -f /var/cache/ulfs-packages/startup-notification ]; then echo "Dependance \"startup-notification\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2/startup-notification/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/startup-notification/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/startup-notification ]; then echo "Dependance \"startup-notification\" is not installed. Exiting..." exit fi fi #Checking desktop-file-utils... if [ ! -f /var/cache/ulfs-packages/desktop-file-utils ]; then echo "Dependance \"desktop-file-utils\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2/desktop-file-utils/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/desktop-file-utils/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/desktop-file-utils ]; then echo "Dependance \"desktop-file-utils\" is not installed. Exiting..." exit fi fi #Checking libxkbcommon... if [ ! -f /var/cache/ulfs-packages/libxkbcommon ]; then echo "Dependance \"libxkbcommon\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2/libxkbcommon/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/libxkbcommon/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libxkbcommon ]; then echo "Dependance \"libxkbcommon\" is not installed. Exiting..." exit fi fi #Checking graphene... if [ ! -f /var/cache/ulfs-packages/graphene ]; then echo "Dependance \"graphene\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2/graphene/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/graphene/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/graphene ]; then echo "Dependance \"graphene\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2/gnome-settings-daemon/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/gnome-settings-daemon/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gnome-settings-daemon ]; then echo "Dependance \"gnome-settings-daemon\" 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/pipewire/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2/pipewire/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/pipewire ]; then echo "Dependance \"pipewire\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/mutter/download.time #Downloading source package archive... downloadFile https://umvirt.com/linux/downloads/0.2/packages/m/mutter-44.3.tar.xz.md5sum downloadFile https://umvirt.com/linux/downloads/0.2/packages/m/mutter-44.3.tar.xz #Checking source package file existance if [ ! -f mutter-44.3.tar.xz ]; then echo "Error: Can't find mutter-44.3.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f mutter-44.3.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c mutter-44.3.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of mutter-44.3.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/mutter/cleanup.time rm -rfv /sources/mutter-44.3/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/mutter/unpack.time #Extracting tar source package archive with default parameters... tar -xf mutter-44.3.tar.xz #Checking package directory size after unpack... du -s mutter-44.3 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/mutter/unpack.size #Going to source package directory... cd mutter-44.3 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/mutter/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/mutter-44.3 \! -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 build && cd build && meson setup --prefix=/usr \\ --buildtype=release \\ -Dtests=false \\ -Dprofiler=false \\ .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/mutter/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/mutter/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/mutter/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/mutter/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/mutter/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/mutter/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/mutter/finish.time #Checking package directory size after unpack... cd /sources du -s mutter-44.3 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/mutter/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/mutter/files.txt ]; then rm /var/log/ulfs-packages/mutter/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt find /sbin -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt find /usr -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt find /etc -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/mutter/files.txt find /opt -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt find /lib -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt find /var -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time \! -path "/var/log/ulfs-packages/mutter/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/mutter/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/mutter/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time >> /var/log/ulfs-packages/mutter/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/mutter/configure.time \! -newer /var/log/ulfs-packages/mutter/finish.time \! -path "/var/log/ulfs-packages/mutter/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/mutter/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/mutter else sudo touch /var/cache/ulfs-packages/mutter fi #Calculate delta size a=`cat /var/log/ulfs-packages/mutter/unpack.size` b=`cat /var/log/ulfs-packages/mutter/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/mutter/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/mutter/start.time` b=`cat /var/log/ulfs-packages/mutter/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/mutter/download.time` b=`cat /var/log/ulfs-packages/mutter/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/mutter/configure.time` b=`cat /var/log/ulfs-packages/mutter/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/mutter/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: mutter" echo "Release: 0.2" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script