mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-05-12 09:24:42 +00:00
19 lines
588 B
Bash
19 lines
588 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"
|
|
|
|
_HOST_ARCH="$(uname -m)"
|
|
if [ "$_HOST_ARCH" = "x86_64" ]; then
|
|
run_priv dpkg --add-architecture i386 || true
|
|
fi
|
|
run_priv apt-get update -y
|
|
|
|
_PKGS="patchelf libopusfile0 espeak-ng zip rpm elfutils fakeroot file"
|
|
if [ "$_HOST_ARCH" = "x86_64" ]; then
|
|
_PKGS="$_PKGS libc6:i386 libstdc++6:i386"
|
|
fi
|
|
run_priv apt-get install -y --no-install-recommends $_PKGS
|