termux-packages/build-all.sh

50 lines
1.5 KiB
Bash
Raw Normal View History

2015-06-12 23:03:31 +00:00
#!/bin/bash
# build-all.sh - script to build all packages with a build order specified by buildorder.py
set -e -u -o pipefail
# Read settings from .termuxrc if existing
test -f $HOME/.termuxrc && . $HOME/.termuxrc
: ${TERMUX_TOPDIR:="$HOME/.termux-build"}
2015-06-12 23:03:31 +00:00
BUILDSCRIPT=`dirname $0`/build-package.sh
BUILDORDER_FILE=$TERMUX_TOPDIR/_buildall/buildorder.txt
BUILDSTATUS_FILE=$TERMUX_TOPDIR/_buildall/buildstatus.txt
2015-06-12 23:03:31 +00:00
if [ -e $BUILDORDER_FILE ]; then
echo "Using existing buildorder file: $BUILDORDER_FILE"
2015-06-12 23:03:31 +00:00
else
mkdir -p $TERMUX_TOPDIR/_buildall
2016-01-15 03:45:50 +00:00
./scripts/buildorder.py > $BUILDORDER_FILE
2015-06-12 23:03:31 +00:00
fi
if [ -e $BUILDSTATUS_FILE ]; then
echo "Continuing build-all from: $BUILDSTATUS_FILE"
fi
2015-06-12 23:03:31 +00:00
exec > >(tee -a $TERMUX_TOPDIR/_buildall/ALL.out)
exec 2> >(tee -a $TERMUX_TOPDIR/_buildall/ALL.err >&2)
trap 'echo failure; echo See: $TERMUX_TOPDIR/_buildall/${package}.err' ERR
2015-06-12 23:03:31 +00:00
for package in `cat $BUILDORDER_FILE`; do
# Check build status (grepping is a bit crude, but it works)
if [ -e $BUILDSTATUS_FILE ] && \
grep "^$package\$" $BUILDSTATUS_FILE >/dev/null; then
echo "Skipping $package"
continue
fi
echo -n "Building $package... "
2015-06-12 23:03:31 +00:00
BUILD_START=`date "+%s"`
bash -x $BUILDSCRIPT -s $package > $TERMUX_TOPDIR/_buildall/${package}.out 2> $TERMUX_TOPDIR/_buildall/${package}.err
2015-06-12 23:03:31 +00:00
BUILD_END=`date "+%s"`
BUILD_SECONDS=$(( $BUILD_END - $BUILD_START ))
echo "done in $BUILD_SECONDS"
# Update build status
echo "$package" >> $BUILDSTATUS_FILE
2015-06-12 23:03:31 +00:00
done
# Update build status
rm -f $BUILDSTATUS_FILE
echo "Finished"