#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.4 # Package: gtk4 #=========================== # DB commit: 87572d7cf5c2e4fc6a7d33abc05341175a2c925a # APP commit: e905d50832f25d6e1ea1c062c557c2674e1072f0 #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: gtk4" echo "Release: 0.2.4" downloadFile() { local filename=$1 echo "Downloading $filename ..." if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl -k -O $filename else wget --no-check-certificate -nc $filename fi } echo "loading environment settings(profile)" . /etc/profile 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/gtk4/ #Saving start timestamp date +%s > /var/log/ulfs-packages/gtk4/start.time #Going to source directory... cd /sources #Checking dependances... #Checking glslc... if [ ! -f /var/cache/ulfs-packages/glslc ]; then echo "Dependance \"glslc\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/glslc/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/glslc/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/glslc ]; then echo "Dependance \"glslc\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/gobject-introspection/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/gobject-introspection/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then echo "Dependance \"gobject-introspection\" is not installed. Exiting..." exit fi fi #Checking wayland-protocols... if [ ! -f /var/cache/ulfs-packages/wayland-protocols ]; then echo "Dependance \"wayland-protocols\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/wayland-protocols/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/wayland-protocols/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/wayland-protocols ]; then echo "Dependance \"wayland-protocols\" is not installed. Exiting..." exit fi fi #Checking libepoxy... if [ ! -f /var/cache/ulfs-packages/libepoxy ]; then echo "Dependance \"libepoxy\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/libepoxy/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/libepoxy/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libepoxy ]; then echo "Dependance \"libepoxy\" is not installed. Exiting..." exit fi fi #Checking gdk-pixbuf... if [ ! -f /var/cache/ulfs-packages/gdk-pixbuf ]; then echo "Dependance \"gdk-pixbuf\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/gdk-pixbuf/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/gdk-pixbuf/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gdk-pixbuf ]; then echo "Dependance \"gdk-pixbuf\" is not installed. Exiting..." exit fi fi #Checking fribidi... if [ ! -f /var/cache/ulfs-packages/fribidi ]; then echo "Dependance \"fribidi\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/fribidi/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/fribidi/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/fribidi ]; then echo "Dependance \"fribidi\" is not installed. Exiting..." exit fi fi #Checking pango... if [ ! -f /var/cache/ulfs-packages/pango ]; then echo "Dependance \"pango\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/pango/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/pango/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/pango ]; then echo "Dependance \"pango\" is not installed. Exiting..." exit fi fi #Checking libxkbcommon... if [ ! -f /var/cache/ulfs-packages/libxkbcommon ]; then echo "Dependance \"libxkbcommon\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/libxkbcommon/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/libxkbcommon/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libxkbcommon ]; then echo "Dependance \"libxkbcommon\" is not installed. Exiting..." exit fi fi #Checking graphene... if [ ! -f /var/cache/ulfs-packages/graphene ]; then echo "Dependance \"graphene\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/graphene/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/graphene/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/graphene ]; then echo "Dependance \"graphene\" is not installed. Exiting..." exit fi fi #Checking iso-codes... if [ ! -f /var/cache/ulfs-packages/iso-codes ]; then echo "Dependance \"iso-codes\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/iso-codes/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/iso-codes/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/iso-codes ]; then echo "Dependance \"iso-codes\" is not installed. Exiting..." exit fi fi #Checking librsvg... if [ ! -f /var/cache/ulfs-packages/librsvg ]; then echo "Dependance \"librsvg\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/librsvg/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/librsvg/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/librsvg ]; then echo "Dependance \"librsvg\" is not installed. Exiting..." exit fi fi #Checking gst-plugins-bad... if [ ! -f /var/cache/ulfs-packages/gst-plugins-bad ]; then echo "Dependance \"gst-plugins-bad\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.4/gst-plugins-bad/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.4/gst-plugins-bad/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gst-plugins-bad ]; then echo "Dependance \"gst-plugins-bad\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/gtk4/download.time #Downloading source package archive... downloadFile .md5sum downloadFile #Checking source package file existance if [ ! -f gtk-4.16.12.tar.xz ]; then echo "Error: Can't find gtk-4.16.12.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f gtk-4.16.12.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c gtk-4.16.12.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of gtk-4.16.12.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/gtk4/cleanup.time rm -rfv /sources/gtk-4.16.12/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/gtk4/unpack.time #Extracting tar source package archive with default parameters... tar -xf gtk-4.16.12.tar.xz #Checking package directory size after unpack... du -s gtk-4.16.12 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gtk4/unpack.size #Going to source package directory... cd gtk-4.16.12 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/gtk4/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/gtk-4.16.12 \! -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 "loading environment settings(profile)" . /etc/profile 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 && meson setup --prefix=/usr \\ --buildtype=release \\ -D broadway-backend=true \\ -D introspection=enabled \\ -D vulkan=enabled \\ .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/gtk4/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/gtk4/build.time #Running build script... echo "loading environment settings(profile)" . /etc/profile 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 && ninja if [[ "\$ULFS_PKG_DOCUMENTATION" == "YES" ]] then sed "s@'doc'@& / 'gtk-4.14.5'@" -i ../docs/reference/meson.build && meson configure -D documentation=true && ninja fi EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/gtk4/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/gtk4/install.time #Running install script... cat > ulfs_install.sh << EOIS cd build && ninja install EOIS echo "/sbin/ldconfig" >> ulfs_install.sh USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/gtk4/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/gtk4/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/gtk4/finish.time #Checking package directory size after unpack... cd /sources du -s gtk-4.16.12 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gtk4/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/gtk4/files.txt ]; then rm /var/log/ulfs-packages/gtk4/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt find /sbin -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt find /usr -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt find /etc -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/gtk4/files.txt find /opt -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt find /lib -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt find /var -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time \! -path "/var/log/ulfs-packages/gtk4/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/gtk4/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/gtk4/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time >> /var/log/ulfs-packages/gtk4/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/gtk4/configure.time \! -newer /var/log/ulfs-packages/gtk4/finish.time \! -path "/var/log/ulfs-packages/gtk4/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/gtk4/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/gtk4 else sudo touch /var/cache/ulfs-packages/gtk4 fi #Calculate delta size a=`cat /var/log/ulfs-packages/gtk4/unpack.size` b=`cat /var/log/ulfs-packages/gtk4/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/gtk4/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/gtk4/start.time` b=`cat /var/log/ulfs-packages/gtk4/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/gtk4/download.time` b=`cat /var/log/ulfs-packages/gtk4/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/gtk4/configure.time` b=`cat /var/log/ulfs-packages/gtk4/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/gtk4/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: gtk4" echo "Release: 0.2.4" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script