#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: audacious #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: audacious" 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/ #Saving start timestamp date +%s > /var/log/ulfs-packages/audacious/start.time #Going to source directory... cd /sources #Checking dependances... #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 #Checking audacious-plugins... if [ ! -f /var/cache/ulfs-packages/audacious-plugins ]; then echo "Dependance \"audacious-plugins\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/audacious-plugins/install -O - | bash if [ ! -f /var/cache/ulfs-packages/audacious-plugins ]; then echo "Dependance \"audacious-plugins\" is not installed. Exiting..." exit fi fi #Saving configuration timestamp date +%s > /var/log/ulfs-packages/audacious/configure.time #Saving build timestamp date +%s > /var/log/ulfs-packages/audacious/build.time #Saving install timestamp date +%s > /var/log/ulfs-packages/audacious/install.time #Running install script... # #Saving finish timestamp date +%s > /var/log/ulfs-packages/audacious/finish.time #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/audacious else sudo touch /var/cache/ulfs-packages/audacious fi #Calculate prepare time a=`cat /var/log/ulfs-packages/audacious/start.time` b=`cat /var/log/ulfs-packages/audacious/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/audacious/download.time` b=`cat /var/log/ulfs-packages/audacious/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/audacious/configure.time` b=`cat /var/log/ulfs-packages/audacious/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/audacious/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: audacious" echo "Release: 0.2.2" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script