Ian Fijolek
52dced87a8
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
345 B
Bash
Executable File
14 lines
345 B
Bash
Executable File
#! /bin/bash
|
|
|
|
HOST_ARCH=x86_64
|
|
VERSION=v2.9.1-1
|
|
|
|
mkdir -p build
|
|
cd build
|
|
|
|
for target_arch in $*; do
|
|
wget -N https://github.com/multiarch/qemu-user-static/releases/download/$VERSION/${HOST_ARCH}_qemu-${target_arch}-static.tar.gz
|
|
tar -xvf ${HOST_ARCH}_qemu-${target_arch}-static.tar.gz
|
|
rm ${HOST_ARCH}_qemu-${target_arch}-static.tar.gz
|
|
done
|