From b2b62c9d72bfec35d19216df228cac203f77ba21 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 9 Feb 2022 20:32:14 +0000 Subject: ignoring already installed files --- xibuild/build_all.sh | 50 ++++++++++++++++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 18 deletions(-) (limited to 'xibuild/build_all.sh') diff --git a/xibuild/build_all.sh b/xibuild/build_all.sh index 275e50b..dae63c6 100755 --- a/xibuild/build_all.sh +++ b/xibuild/build_all.sh @@ -6,6 +6,37 @@ PASS="\033[0;32m" NEUTRAL="\033[0;33m" RESET="\033[0m" +install_package () { + local exported_pkg=$(find $XIB_EXPORT -wholename "*/$1.xipkg" | head -1 | xargs realpath) + if [ -f $exported_pkg ]; then + local checksum=$(md5sum $exported_pkg) + + local installed_list="$XIB_CHROOT/installed" + [ -f $installed_list ] || touch $installed_list + + if grep -q "^$checksum$" $installed_list; then + echo $checksum >> $installed_list + + tar -h --no-overwrite-dir -xf $exported_pkg -C $XIB_CHROOT + + postinstall="$XIB_CHROOT/var/lib/xipkg/postinstall" + if [ -d $postinstall ]; then + for file in "$postinstall/*.sh"; do + f=$(basename $file) + chmod 755 $file + xichroot "$XIB_CHROOT" "/var/lib/xipkg/postinstall/$f" + rm $file + printf "$PASS run postinstall for $f!\n" + done + rmdir $postinstall + fi + printf "$PASS installed to chroot!\n" + else + printf "$RESET already installed!\n" + fi + fi +} + build_package () { name=$(echo $line | cut -d"+" -f1) buildfile=$(find $XIB_BUILDFILES -wholename "*/$name.xibuild" | head -1) @@ -18,24 +49,7 @@ build_package () { # Install the package if it is needed for other builds if echo $line | grep -q '+'; then printf "$INFO\tInstalling..." - exported_pkg=$(find $XIB_EXPORT -wholename "*/$name.xipkg" | head -1 | xargs realpath) - if [ -f $exported_pkg ]; then - tar -h --no-overwrite-dir -xf $exported_pkg -C $XIB_CHROOT - - postinstall="$XIB_CHROOT/var/lib/xipkg/postinstall" - if [ -d $postinstall ]; then - for file in "$postinstall/*.sh"; do - f=$(basename $file) - chmod 755 $file - xichroot "$XIB_CHROOT" "/var/lib/xipkg/postinstall/$f" - rm $file - printf "$PASS run postinstall for $f!\n" - done - rmdir $postinstall - fi - fi - - printf "$PASS installed to chroot!\n" + install_package $name fi printf $RESET -- cgit v1.2.1