mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-25 19:42:13 +00:00
21 lines
502 B
Bash
21 lines
502 B
Bash
#!/usr/bin/env bash
|
|
# APT packages needed for Linux Electron packaging (AppImage, deb, rpm) on Debian/Ubuntu or in Dockerfile.build (root).
|
|
set -euo pipefail
|
|
|
|
# shellcheck source=scripts/ci/priv.sh
|
|
. "$(dirname "$0")/priv.sh"
|
|
|
|
run_priv dpkg --add-architecture i386 || true
|
|
run_priv apt-get update -y
|
|
run_priv apt-get install -y --no-install-recommends \
|
|
patchelf \
|
|
libopusfile0 \
|
|
espeak-ng \
|
|
zip \
|
|
rpm \
|
|
elfutils \
|
|
fakeroot \
|
|
file \
|
|
libc6:i386 \
|
|
libstdc++6:i386
|