#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: hdf5 #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: hdf5" 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/hdf5/ #Saving start timestamp date +%s > /var/log/ulfs-packages/hdf5/start.time #Going to source directory... cd /sources #Checking dependances... #Checking szip... if [ ! -f /var/cache/ulfs-packages/szip ]; then echo "Dependance \"szip\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/szip/install -O - | bash if [ ! -f /var/cache/ulfs-packages/szip ]; then echo "Dependance \"szip\" is not installed. Exiting..." exit fi fi #Checking gcc... if [ ! -f /var/cache/ulfs-packages/gcc ]; then echo "Dependance \"gcc\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/gcc/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gcc ]; then echo "Dependance \"gcc\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/hdf5/download.time #Downloading source package archive... wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/h/hdf5-1.10.6.tar.bz2.md5sum wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/h/hdf5-1.10.6.tar.bz2 #Checking source package file existance if [ ! -f hdf5-1.10.6.tar.bz2 ]; then echo "Error: Can't find hdf5-1.10.6.tar.bz2. Exiting!" exit fi #Checking source package file checksum if [ -f hdf5-1.10.6.tar.bz2.md5sum ]; then MD5=`LANG=C md5sum -c hdf5-1.10.6.tar.bz2.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of hdf5-1.10.6.tar.bz2 is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/hdf5/cleanup.time rm -rfv /sources/hdf5-1.10.6/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/hdf5/unpack.time #Extracting tar source package archive with default parameters... tar -xf hdf5-1.10.6.tar.bz2 #Checking package directory size after unpack... du -s hdf5-1.10.6 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/hdf5/unpack.size #Going to source package directory... cd hdf5-1.10.6 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/hdf5/configure.time #Sleep 1 second sleep 1 #Running configuration script... # Crazy workaround: run CMake to generate pkg-config file mkdir -p build && cd build cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr \ -DBUILD_SHARED_LIBS=ON \ -DCMAKE_BUILD_TYPE=Release \ -DHDF5_BUILD_HL_LIB=ON \ -DHDF5_BUILD_CPP_LIB=ON \ -DHDF5_BUILD_FORTRAN=ON \ -DHDF5_ENABLE_Z_LIB_SUPPORT=ON \ -DHDF5_ENABLE_SZIP_SUPPORT=ON \ -DHDF5_ENABLE_SZIP_ENCODING=ON # But don’t build with it, it’s quite broken cd .. ./configure \ --prefix=/usr \ --docdir=/usr/share/doc/hdf5/ \ --enable-static \ --disable-sharedlib-rpath \ --enable-build-mode=production \ --enable-hl \ --enable-cxx \ --enable-fortran \ --with-pic \ --with-zlib \ --with-szlib #Saving build timestamp date +%s > /var/log/ulfs-packages/hdf5/build.time #Running build script... make #Saving install timestamp date +%s > /var/log/ulfs-packages/hdf5/install.time #Running install script... cat > ulfs_install.sh << EOIS make install # Install pkg-config files from CMake tree install -Dm644 build/CMakeFiles/hdf5{,_hl}{,_cpp}-1.10.6.pc -t /usr/lib/pkgconfig/ EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/hdf5/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/hdf5/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/hdf5/finish.time #Checking package directory size after unpack... cd /sources du -s hdf5-1.10.6 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/hdf5/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/hdf5/files.txt ]; then rm /var/log/ulfs-packages/hdf5/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt find /sbin -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt find /usr -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt find /etc -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt find /opt -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt find /lib -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt find /var -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time \! -path "/var/log/ulfs-packages/hdf5/*" >> /var/log/ulfs-packages/hdf5/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time >> /var/log/ulfs-packages/hdf5/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/hdf5/configure.time \! -newer /var/log/ulfs-packages/hdf5/finish.time \! -path "/var/log/ulfs-packages/hdf5/*" >> /var/log/ulfs-packages/hdf5/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/hdf5 else sudo touch /var/cache/ulfs-packages/hdf5 fi #Calculate delta size a=`cat /var/log/ulfs-packages/hdf5/unpack.size` b=`cat /var/log/ulfs-packages/hdf5/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/hdf5/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/hdf5/start.time` b=`cat /var/log/ulfs-packages/hdf5/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/hdf5/download.time` b=`cat /var/log/ulfs-packages/hdf5/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/hdf5/configure.time` b=`cat /var/log/ulfs-packages/hdf5/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/hdf5/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: hdf5" 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