#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: gdk-pixbuf #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: gdk-pixbuf" 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/gdk-pixbuf/ #Saving start timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/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://ulfs.org/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 freetype-stage2... if [ ! -f /var/cache/ulfs-packages/freetype-stage2 ]; then echo "Dependance \"freetype-stage2\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/freetype-stage2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/freetype-stage2 ]; then echo "Dependance \"freetype-stage2\" is not installed. Exiting..." exit fi fi #Checking Xlibs... if [ ! -f /var/cache/ulfs-packages/Xlibs ]; then echo "Dependance \"Xlibs\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/Xlibs/install -O - | bash if [ ! -f /var/cache/ulfs-packages/Xlibs ]; then echo "Dependance \"Xlibs\" is not installed. Exiting..." exit fi fi #Checking libpng... if [ ! -f /var/cache/ulfs-packages/libpng ]; then echo "Dependance \"libpng\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/libpng/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libpng ]; then echo "Dependance \"libpng\" is not installed. Exiting..." exit fi fi #Checking gobject-introspection... if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then echo "Dependance \"gobject-introspection\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/gobject-introspection/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then echo "Dependance \"gobject-introspection\" is not installed. Exiting..." exit fi fi #Checking libjpeg-turbo... if [ ! -f /var/cache/ulfs-packages/libjpeg-turbo ]; then echo "Dependance \"libjpeg-turbo\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/libjpeg-turbo/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libjpeg-turbo ]; then echo "Dependance \"libjpeg-turbo\" 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://ulfs.org/linux/packages//0.1/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 tiff... if [ ! -f /var/cache/ulfs-packages/tiff ]; then echo "Dependance \"tiff\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/tiff/install -O - | bash if [ ! -f /var/cache/ulfs-packages/tiff ]; then echo "Dependance \"tiff\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/download.time #Downloading source package archive... wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/g/gdk-pixbuf-2.36.12.tar.xz.md5sum wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/g/gdk-pixbuf-2.36.12.tar.xz #Checking source package file existance if [ ! -f gdk-pixbuf-2.36.12.tar.xz ]; then echo "Error: Can't find gdk-pixbuf-2.36.12.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f gdk-pixbuf-2.36.12.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c gdk-pixbuf-2.36.12.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of gdk-pixbuf-2.36.12.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/cleanup.time rm -rfv /sources/gdk-pixbuf-2.36.12/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/unpack.time #Extracting tar source package archive with default parameters... tar -xf gdk-pixbuf-2.36.12.tar.xz #Checking package directory size after unpack... du -s gdk-pixbuf-2.36.12 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gdk-pixbuf/unpack.size #Going to source package directory... cd gdk-pixbuf-2.36.12 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/configure.time #Sleep 1 second sleep 1 #Running configuration script... ./configure --prefix=/usr --with-x11 #Saving build timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/build.time #Running build script... make #Saving install timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/install.time #Running install script... cat > ulfs_install.sh << EOIS make install EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/gdk-pixbuf/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/gdk-pixbuf/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/gdk-pixbuf/finish.time #Checking package directory size after unpack... cd /sources du -s gdk-pixbuf-2.36.12 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gdk-pixbuf/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/gdk-pixbuf/files.txt ]; then rm /var/log/ulfs-packages/gdk-pixbuf/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt find /sbin -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt find /usr -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt find /etc -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt find /opt -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt find /lib -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt find /var -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time \! -path "/var/log/ulfs-packages/gdk-pixbuf/*" >> /var/log/ulfs-packages/gdk-pixbuf/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time >> /var/log/ulfs-packages/gdk-pixbuf/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/gdk-pixbuf/configure.time \! -newer /var/log/ulfs-packages/gdk-pixbuf/finish.time \! -path "/var/log/ulfs-packages/gdk-pixbuf/*" >> /var/log/ulfs-packages/gdk-pixbuf/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/gdk-pixbuf else sudo touch /var/cache/ulfs-packages/gdk-pixbuf fi #Calculate delta size a=`cat /var/log/ulfs-packages/gdk-pixbuf/unpack.size` b=`cat /var/log/ulfs-packages/gdk-pixbuf/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/gdk-pixbuf/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/gdk-pixbuf/start.time` b=`cat /var/log/ulfs-packages/gdk-pixbuf/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/gdk-pixbuf/download.time` b=`cat /var/log/ulfs-packages/gdk-pixbuf/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/gdk-pixbuf/configure.time` b=`cat /var/log/ulfs-packages/gdk-pixbuf/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/gdk-pixbuf/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: gdk-pixbuf" 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