devilutionX/Packaging/OpenDingux/build-all.sh
Gleb Mazovetskiy afca5d9fef OpenDingux/RetroFW build cleanup
1. Now that all the buildroots we need are open-source,
   use defconfigs that ship with them instead of rolling our own.
2. New script: Packagaging/OpenDingux/build-all.sh
3. To avoid polluting top-level home directory, buildroot location
   changed to `~/devilutionx-buildroot/$BUILDROOT_TARGET`.
4. Move OPK packaging script to its own file. This is to be able
   to make a package for devilutionX in the buildroot itself.
2020-04-04 20:29:35 +02:00

11 lines
209 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")/../.."
source Packaging/OpenDingux/targets.sh
for target in "${VALID_TARGETS[@]}"; do
Packaging/OpenDingux/build.sh "$target"
done