a005794323
- Output deb files to debs/ folder by default. - Use $HOME/.termux-build for build folder by default (changed from previous $HOME/termux). - Make scripts/run-docker.sh re-use a single container instead of creating new ones for each run. - Avoid mounting the whole Termux build folder in docker. This fixes #294, mmap not supported host folders under OS X. - Add a scripts/update-docker.sh utility for checking for an updated docker image.. - Make build-package.sh support the [-a ARCH] flag to specify arch. - Make aarch64 the default arch (from previous arm). - Try to improve the README a bit.
10 lines
247 B
Bash
Executable File
10 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
# clean-rebuild-all.sh - clean everything and rebuild
|
|
|
|
# Read settings from .termuxrc if existing
|
|
test -f $HOME/.termuxrc && . $HOME/.termuxrc
|
|
: ${TERMUX_TOPDIR:="$HOME/.termux-build"}
|
|
|
|
rm -Rf /data/* $TERMUX_TOPDIR
|
|
bash -x build-all.sh
|