#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: tinyxml #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: tinyxml" 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/tinyxml/ #Saving start timestamp date +%s > /var/log/ulfs-packages/tinyxml/start.time #Going to source directory... cd /sources #Checking dependances... #Checking setconf... if [ ! -f /var/cache/ulfs-packages/setconf ]; then echo "Dependance \"setconf\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/setconf/install -O - | bash if [ ! -f /var/cache/ulfs-packages/setconf ]; then echo "Dependance \"setconf\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/tinyxml/download.time #Downloading source package archive... wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/t/tinyxml_2_6_2.tar.gz.md5sum wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/t/tinyxml_2_6_2.tar.gz #Checking source package file existance if [ ! -f tinyxml_2_6_2.tar.gz ]; then echo "Error: Can't find tinyxml_2_6_2.tar.gz. Exiting!" exit fi #Checking source package file checksum if [ -f tinyxml_2_6_2.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c tinyxml_2_6_2.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of tinyxml_2_6_2.tar.gz is wrong. Exiting!" exit fi fi #Downloadning patches... wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/patches/tinyxml-entity.patch #Downloadning patches... wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/patches/tinyxml-2.5.3-stl.patch #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/tinyxml/cleanup.time rm -rfv /sources/tinyxml/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/tinyxml/unpack.time #Extracting tar source package archive with default parameters... tar -xf tinyxml_2_6_2.tar.gz #Checking package directory size after unpack... du -s tinyxml | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/tinyxml/unpack.size #Going to source package directory... cd tinyxml #Applying patches... patch -Np0 -i ../tinyxml-entity.patch patch -Np -i ../tinyxml-2.5.3-stl.patch #Saving configuration timestamp date +%s > /var/log/ulfs-packages/tinyxml/configure.time #Sleep 1 second sleep 1 #Running configuration script... setconf Makefile TINYXML_USE_STL YES setconf Makefile RELEASE_CFLAGS " -fPIC" #Saving build timestamp date +%s > /var/log/ulfs-packages/tinyxml/build.time #Running build script... make g++ -fPIC -shared -o "libtinyxml.so.0.2.6.2" \ -Wl,-soname,"libtinyxml.so.0" \$(ls *.o | grep -v xmltest.o) #Saving install timestamp date +%s > /var/log/ulfs-packages/tinyxml/install.time #Running install script... cat > ulfs_install.sh << EOIS install -m 0755 "libtinyxml.so.0.2.6.2" /usr/lib/ install -m 0644 "tinyxml.h" tinystr.h /usr/include cat > /usr/lib/pkgconfig/tinyxml.pc << "EOF" prefix=/usr exec_prefix=\${prefix} libdir=\${exec_prefix}/lib includedir=\${prefix}/include Name: TinyXml Description: simple, small, C++ XML parser Version: 2.6.2 Libs: -L\${libdir} -ltinyxml Cflags: -I\${includedir} EOF cd "/usr/lib" rm "libtinyxml.so" rm "libtinyxml.so.0" ln -s "libtinyxml.so.0.2.6.2" "libtinyxml.so.0" ln -s "libtinyxml.so.0.2.6.2" "libtinyxml.so" EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/tinyxml/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/tinyxml/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/tinyxml/finish.time #Checking package directory size after unpack... cd /sources du -s tinyxml | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/tinyxml/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/tinyxml/files.txt ]; then rm /var/log/ulfs-packages/tinyxml/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt find /sbin -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt find /usr -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt find /etc -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt find /opt -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt find /lib -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt find /var -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time \! -path "/var/log/ulfs-packages/tinyxml/*" >> /var/log/ulfs-packages/tinyxml/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time >> /var/log/ulfs-packages/tinyxml/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/tinyxml/configure.time \! -newer /var/log/ulfs-packages/tinyxml/finish.time \! -path "/var/log/ulfs-packages/tinyxml/*" >> /var/log/ulfs-packages/tinyxml/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/tinyxml else sudo touch /var/cache/ulfs-packages/tinyxml fi #Calculate delta size a=`cat /var/log/ulfs-packages/tinyxml/unpack.size` b=`cat /var/log/ulfs-packages/tinyxml/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/tinyxml/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/tinyxml/start.time` b=`cat /var/log/ulfs-packages/tinyxml/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/tinyxml/download.time` b=`cat /var/log/ulfs-packages/tinyxml/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/tinyxml/configure.time` b=`cat /var/log/ulfs-packages/tinyxml/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/tinyxml/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: tinyxml" 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