#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: inkscape #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: inkscape" 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/inkscape/ #Saving start timestamp date +%s > /var/log/ulfs-packages/inkscape/start.time #Going to source directory... cd /sources #Checking dependances... #Checking libxslt... if [ ! -f /var/cache/ulfs-packages/libxslt ]; then echo "Dependance \"libxslt\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libxslt/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libxslt ]; then echo "Dependance \"libxslt\" is not installed. Exiting..." exit fi fi #Checking popt... if [ ! -f /var/cache/ulfs-packages/popt ]; then echo "Dependance \"popt\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/popt/install -O - | bash if [ ! -f /var/cache/ulfs-packages/popt ]; then echo "Dependance \"popt\" is not installed. Exiting..." exit fi fi #Checking lcms2... if [ ! -f /var/cache/ulfs-packages/lcms2 ]; then echo "Dependance \"lcms2\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/lcms2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/lcms2 ]; then echo "Dependance \"lcms2\" is not installed. Exiting..." exit fi fi #Checking libcanberra... if [ ! -f /var/cache/ulfs-packages/libcanberra ]; then echo "Dependance \"libcanberra\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libcanberra/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libcanberra ]; then echo "Dependance \"libcanberra\" is not installed. Exiting..." exit fi fi #Checking boost... if [ ! -f /var/cache/ulfs-packages/boost ]; then echo "Dependance \"boost\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/boost/install -O - | bash if [ ! -f /var/cache/ulfs-packages/boost ]; then echo "Dependance \"boost\" is not installed. Exiting..." exit fi fi #Checking poppler... if [ ! -f /var/cache/ulfs-packages/poppler ]; then echo "Dependance \"poppler\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/poppler/install -O - | bash if [ ! -f /var/cache/ulfs-packages/poppler ]; then echo "Dependance \"poppler\" is not installed. Exiting..." exit fi fi #Checking libsoup2... if [ ! -f /var/cache/ulfs-packages/libsoup2 ]; then echo "Dependance \"libsoup2\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libsoup2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libsoup2 ]; then echo "Dependance \"libsoup2\" is not installed. Exiting..." exit fi fi #Checking python3-numpy... if [ ! -f /var/cache/ulfs-packages/python3-numpy ]; then echo "Dependance \"python3-numpy\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-numpy/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-numpy ]; then echo "Dependance \"python3-numpy\" is not installed. Exiting..." exit fi fi #Checking gtkmm3... if [ ! -f /var/cache/ulfs-packages/gtkmm3 ]; then echo "Dependance \"gtkmm3\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gtkmm3/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gtkmm3 ]; then echo "Dependance \"gtkmm3\" is not installed. Exiting..." exit fi fi #Checking double-conversion... if [ ! -f /var/cache/ulfs-packages/double-conversion ]; then echo "Dependance \"double-conversion\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/double-conversion/install -O - | bash if [ ! -f /var/cache/ulfs-packages/double-conversion ]; then echo "Dependance \"double-conversion\" is not installed. Exiting..." exit fi fi #Checking gc... if [ ! -f /var/cache/ulfs-packages/gc ]; then echo "Dependance \"gc\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gc/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gc ]; then echo "Dependance \"gc\" is not installed. Exiting..." exit fi fi #Checking gsl... if [ ! -f /var/cache/ulfs-packages/gsl ]; then echo "Dependance \"gsl\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gsl/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gsl ]; then echo "Dependance \"gsl\" is not installed. Exiting..." exit fi fi #Checking potrace... if [ ! -f /var/cache/ulfs-packages/potrace ]; then echo "Dependance \"potrace\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/potrace/install -O - | bash if [ ! -f /var/cache/ulfs-packages/potrace ]; then echo "Dependance \"potrace\" is not installed. Exiting..." exit fi fi #Checking python3-cachecontrol... if [ ! -f /var/cache/ulfs-packages/python3-cachecontrol ]; then echo "Dependance \"python3-cachecontrol\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-cachecontrol/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-cachecontrol ]; then echo "Dependance \"python3-cachecontrol\" is not installed. Exiting..." exit fi fi #Checking python3-cssselect... if [ ! -f /var/cache/ulfs-packages/python3-cssselect ]; then echo "Dependance \"python3-cssselect\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-cssselect/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-cssselect ]; then echo "Dependance \"python3-cssselect\" is not installed. Exiting..." exit fi fi #Checking python3-lxml... if [ ! -f /var/cache/ulfs-packages/python3-lxml ]; then echo "Dependance \"python3-lxml\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-lxml/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-lxml ]; then echo "Dependance \"python3-lxml\" is not installed. Exiting..." exit fi fi #Checking python3-pyserial... if [ ! -f /var/cache/ulfs-packages/python3-pyserial ]; then echo "Dependance \"python3-pyserial\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-pyserial/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-pyserial ]; then echo "Dependance \"python3-pyserial\" is not installed. Exiting..." exit fi fi #Checking python3-scour... if [ ! -f /var/cache/ulfs-packages/python3-scour ]; then echo "Dependance \"python3-scour\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-scour/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-scour ]; then echo "Dependance \"python3-scour\" is not installed. Exiting..." exit fi fi #Checking ImageMagick... if [ ! -f /var/cache/ulfs-packages/ImageMagick ]; then echo "Dependance \"ImageMagick\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/ImageMagick/install -O - | bash if [ ! -f /var/cache/ulfs-packages/ImageMagick ]; then echo "Dependance \"ImageMagick\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/inkscape/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/i/inkscape-1.4.tar.xz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/i/inkscape-1.4.tar.xz #Checking source package file existance if [ ! -f inkscape-1.4.tar.xz ]; then echo "Error: Can't find inkscape-1.4.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f inkscape-1.4.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c inkscape-1.4.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of inkscape-1.4.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/inkscape/cleanup.time rm -rfv /sources/inkscape-1.4_2024-10-09_e7c3feb100/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/inkscape/unpack.time #Extracting tar source package archive with default parameters... tar -xf inkscape-1.4.tar.xz #Checking package directory size after unpack... du -s inkscape-1.4_2024-10-09_e7c3feb100 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/inkscape/unpack.size #Going to source package directory... cd inkscape-1.4_2024-10-09_e7c3feb100 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/inkscape/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/inkscape-1.4_2024-10-09_e7c3feb100 \! -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 mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr \\ -DCMAKE_BUILD_TYPE=Release \\ .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/inkscape/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/inkscape/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 cd build && make EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/inkscape/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/inkscape/install.time #Running install script... cat > ulfs_install.sh << EOIS cd build && make install gtk-update-icon-cache -qtf /usr/share/icons/hicolor && update-desktop-database -q EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/inkscape/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/inkscape/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/inkscape/finish.time #Checking package directory size after unpack... cd /sources du -s inkscape-1.4_2024-10-09_e7c3feb100 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/inkscape/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/inkscape/files.txt ]; then rm /var/log/ulfs-packages/inkscape/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt find /sbin -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt find /usr -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt find /etc -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt find /opt -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt find /lib -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt find /var -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time \! -path "/var/log/ulfs-packages/inkscape/*" >> /var/log/ulfs-packages/inkscape/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time >> /var/log/ulfs-packages/inkscape/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/inkscape/configure.time \! -newer /var/log/ulfs-packages/inkscape/finish.time \! -path "/var/log/ulfs-packages/inkscape/*" >> /var/log/ulfs-packages/inkscape/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/inkscape else sudo touch /var/cache/ulfs-packages/inkscape fi #Calculate delta size a=`cat /var/log/ulfs-packages/inkscape/unpack.size` b=`cat /var/log/ulfs-packages/inkscape/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/inkscape/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/inkscape/start.time` b=`cat /var/log/ulfs-packages/inkscape/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/inkscape/download.time` b=`cat /var/log/ulfs-packages/inkscape/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/inkscape/configure.time` b=`cat /var/log/ulfs-packages/inkscape/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/inkscape/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: inkscape" 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