You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
344 B
20 lines
344 B
#!/bin/sh
|
|
# Copyright (c) 2018 Petr Vorel <pvorel@suse.cz>
|
|
set -e
|
|
|
|
dpkg --add-architecture i386
|
|
apt update
|
|
|
|
apt install -y --no-install-recommends \
|
|
linux-libc-dev:i386 \
|
|
gcc-multilib \
|
|
libacl1:i386 \
|
|
libaio1:i386 \
|
|
libcap2:i386 \
|
|
libc6-dev-i386 \
|
|
libc6:i386 \
|
|
libkeyutils1:i386 \
|
|
libnuma1:i386 \
|
|
libssl-dev:i386 \
|
|
libtirpc-dev:i386
|