#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: xfce4-session #=========================== # DB commit: a32a16b5f59557e98086285561660418604e0237 # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: xfce4-session" 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/xfce4-session/ #Saving start timestamp date +%s > /var/log/ulfs-packages/xfce4-session/start.time #Going to source directory... cd /sources #Checking dependances... #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 desktop-file-utils... if [ ! -f /var/cache/ulfs-packages/desktop-file-utils ]; then echo "Dependance \"desktop-file-utils\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/desktop-file-utils/install -O - | bash if [ ! -f /var/cache/ulfs-packages/desktop-file-utils ]; then echo "Dependance \"desktop-file-utils\" is not installed. Exiting..." exit fi fi #Checking libwnck3... if [ ! -f /var/cache/ulfs-packages/libwnck3 ]; then echo "Dependance \"libwnck3\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libwnck3/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libwnck3 ]; then echo "Dependance \"libwnck3\" is not installed. Exiting..." exit fi fi #Checking libxfce4ui... if [ ! -f /var/cache/ulfs-packages/libxfce4ui ]; then echo "Dependance \"libxfce4ui\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libxfce4ui/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libxfce4ui ]; then echo "Dependance \"libxfce4ui\" is not installed. Exiting..." exit fi fi #Checking xfdesktop... if [ ! -f /var/cache/ulfs-packages/xfdesktop ]; then echo "Dependance \"xfdesktop\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/xfdesktop/install -O - | bash if [ ! -f /var/cache/ulfs-packages/xfdesktop ]; then echo "Dependance \"xfdesktop\" is not installed. Exiting..." exit fi fi #Checking xscreensaver... if [ ! -f /var/cache/ulfs-packages/xscreensaver ]; then echo "Dependance \"xscreensaver\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/xscreensaver/install -O - | bash if [ ! -f /var/cache/ulfs-packages/xscreensaver ]; then echo "Dependance \"xscreensaver\" is not installed. Exiting..." exit fi fi #Checking polkit-gnome... if [ ! -f /var/cache/ulfs-packages/polkit-gnome ]; then echo "Dependance \"polkit-gnome\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/polkit-gnome/install -O - | bash if [ ! -f /var/cache/ulfs-packages/polkit-gnome ]; then echo "Dependance \"polkit-gnome\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/xfce4-session/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/x/xfce4-session-4.18.3.tar.bz2.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/x/xfce4-session-4.18.3.tar.bz2 #Checking source package file existance if [ ! -f xfce4-session-4.18.3.tar.bz2 ]; then echo "Error: Can't find xfce4-session-4.18.3.tar.bz2. Exiting!" exit fi #Checking source package file checksum if [ -f xfce4-session-4.18.3.tar.bz2.md5sum ]; then MD5=`LANG=C md5sum -c xfce4-session-4.18.3.tar.bz2.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of xfce4-session-4.18.3.tar.bz2 is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/xfce4-session/cleanup.time rm -rfv /sources/xfce4-session-4.18.3/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/xfce4-session/unpack.time #Extracting tar source package archive with default parameters... tar -xf xfce4-session-4.18.3.tar.bz2 #Checking package directory size after unpack... du -s xfce4-session-4.18.3 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/xfce4-session/unpack.size #Going to source package directory... cd xfce4-session-4.18.3 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/xfce4-session/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/xfce4-session-4.18.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 "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 ./configure --prefix=/usr \\ --sysconfdir=/etc \\ --disable-legacy-sm EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/xfce4-session/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/xfce4-session/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 make EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/xfce4-session/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/xfce4-session/install.time #Running install script... cat > ulfs_install.sh << EOIS make install update-desktop-database && update-mime-database /usr/share/mime EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/xfce4-session/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/xfce4-session/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/xfce4-session/finish.time #Checking package directory size after unpack... cd /sources du -s xfce4-session-4.18.3 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/xfce4-session/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/xfce4-session/files.txt ]; then rm /var/log/ulfs-packages/xfce4-session/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt find /sbin -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt find /usr -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt find /etc -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt find /opt -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt find /lib -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt find /var -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time \! -path "/var/log/ulfs-packages/xfce4-session/*" >> /var/log/ulfs-packages/xfce4-session/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time >> /var/log/ulfs-packages/xfce4-session/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/xfce4-session/configure.time \! -newer /var/log/ulfs-packages/xfce4-session/finish.time \! -path "/var/log/ulfs-packages/xfce4-session/*" >> /var/log/ulfs-packages/xfce4-session/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/xfce4-session else sudo touch /var/cache/ulfs-packages/xfce4-session fi #Calculate delta size a=`cat /var/log/ulfs-packages/xfce4-session/unpack.size` b=`cat /var/log/ulfs-packages/xfce4-session/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/xfce4-session/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/xfce4-session/start.time` b=`cat /var/log/ulfs-packages/xfce4-session/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/xfce4-session/download.time` b=`cat /var/log/ulfs-packages/xfce4-session/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/xfce4-session/configure.time` b=`cat /var/log/ulfs-packages/xfce4-session/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/xfce4-session/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: xfce4-session" 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