#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: gvfs #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: gvfs" echo "Release: 0.1" 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/gvfs/ #Saving start timestamp date +%s > /var/log/ulfs-packages/gvfs/start.time #Going to source directory... cd /sources #Checking dependances... #Checking glib... if [ ! -f /var/cache/ulfs-packages/glib ]; then echo "Dependance \"glib\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/glib/install -O - | bash if [ ! -f /var/cache/ulfs-packages/glib ]; then echo "Dependance \"glib\" is not installed. Exiting..." exit fi fi #Checking openssh... if [ ! -f /var/cache/ulfs-packages/openssh ]; then echo "Dependance \"openssh\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/openssh/install -O - | bash if [ ! -f /var/cache/ulfs-packages/openssh ]; then echo "Dependance \"openssh\" is not installed. Exiting..." exit fi fi #Checking gcr... if [ ! -f /var/cache/ulfs-packages/gcr ]; then echo "Dependance \"gcr\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/gcr/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gcr ]; then echo "Dependance \"gcr\" is not installed. Exiting..." exit fi fi #Checking dbus... if [ ! -f /var/cache/ulfs-packages/dbus ]; then echo "Dependance \"dbus\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/dbus/install -O - | bash if [ ! -f /var/cache/ulfs-packages/dbus ]; then echo "Dependance \"dbus\" is not installed. Exiting..." exit fi fi #Checking gtk3... if [ ! -f /var/cache/ulfs-packages/gtk3 ]; then echo "Dependance \"gtk3\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/gtk3/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gtk3 ]; then echo "Dependance \"gtk3\" is not installed. Exiting..." exit fi fi #Checking libsecret... if [ ! -f /var/cache/ulfs-packages/libsecret ]; then echo "Dependance \"libsecret\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/libsecret/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libsecret ]; then echo "Dependance \"libsecret\" is not installed. Exiting..." exit fi fi #Checking libsoup... if [ ! -f /var/cache/ulfs-packages/libsoup ]; then echo "Dependance \"libsoup\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/libsoup/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libsoup ]; then echo "Dependance \"libsoup\" is not installed. Exiting..." exit fi fi #Checking libgudev... if [ ! -f /var/cache/ulfs-packages/libgudev ]; then echo "Dependance \"libgudev\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/libgudev/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libgudev ]; then echo "Dependance \"libgudev\" is not installed. Exiting..." exit fi fi #Checking libgdata... if [ ! -f /var/cache/ulfs-packages/libgdata ]; then echo "Dependance \"libgdata\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/libgdata/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libgdata ]; then echo "Dependance \"libgdata\" 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.1/libcdio/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libcdio ]; then echo "Dependance \"libcdio\" 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.1/udisks/install -O - | bash if [ ! -f /var/cache/ulfs-packages/udisks ]; then echo "Dependance \"udisks\" is not installed. Exiting..." exit fi fi #Checking systemd... if [ ! -f /var/cache/ulfs-packages/systemd ]; then echo "Dependance \"systemd\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/systemd/install -O - | bash if [ ! -f /var/cache/ulfs-packages/systemd ]; then echo "Dependance \"systemd\" is not installed. Exiting..." exit fi fi #Checking libusb... if [ ! -f /var/cache/ulfs-packages/libusb ]; then echo "Dependance \"libusb\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/libusb/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libusb ]; then echo "Dependance \"libusb\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/gvfs/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/g/gvfs-1.36.2.tar.xz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/g/gvfs-1.36.2.tar.xz #Checking source package file existance if [ ! -f gvfs-1.36.2.tar.xz ]; then echo "Error: Can't find gvfs-1.36.2.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f gvfs-1.36.2.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c gvfs-1.36.2.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of gvfs-1.36.2.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/gvfs/cleanup.time rm -rfv /sources/gvfs-1.36.2/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/gvfs/unpack.time #Extracting tar source package archive with default parameters... tar -xf gvfs-1.36.2.tar.xz #Checking package directory size after unpack... du -s gvfs-1.36.2 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gvfs/unpack.size #Going to source package directory... cd gvfs-1.36.2 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/gvfs/configure.time #Sleep 1 second sleep 1 #Running configuration script... mkdir build && cd build && meson --prefix=/usr \ --sysconfdir=/etc \ -Dfuse=false \ -Dgphoto2=false \ -Dafc=false \ -Dbluray=false \ -Dnfs=false \ -Dmtp=false \ -Dsmb=false \ -Ddnssd=false \ -Dgoa=false \ -Dgoogle=false .. #Saving build timestamp date +%s > /var/log/ulfs-packages/gvfs/build.time #Running build script... ninja #Saving install timestamp date +%s > /var/log/ulfs-packages/gvfs/install.time #Running install script... cat > ulfs_install.sh << EOIS ninja install EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/gvfs/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/gvfs/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/gvfs/finish.time #Checking package directory size after unpack... cd /sources du -s gvfs-1.36.2 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gvfs/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/gvfs/files.txt ]; then rm /var/log/ulfs-packages/gvfs/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt find /sbin -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt find /usr -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt find /etc -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt find /opt -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt find /lib -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt find /var -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time \! -path "/var/log/ulfs-packages/gvfs/*" >> /var/log/ulfs-packages/gvfs/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time >> /var/log/ulfs-packages/gvfs/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/gvfs/configure.time \! -newer /var/log/ulfs-packages/gvfs/finish.time \! -path "/var/log/ulfs-packages/gvfs/*" >> /var/log/ulfs-packages/gvfs/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/gvfs else sudo touch /var/cache/ulfs-packages/gvfs fi #Calculate delta size a=`cat /var/log/ulfs-packages/gvfs/unpack.size` b=`cat /var/log/ulfs-packages/gvfs/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/gvfs/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/gvfs/start.time` b=`cat /var/log/ulfs-packages/gvfs/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/gvfs/download.time` b=`cat /var/log/ulfs-packages/gvfs/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/gvfs/configure.time` b=`cat /var/log/ulfs-packages/gvfs/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/gvfs/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: gvfs" echo "Release: 0.1" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script