Fix build.sh formatting

This commit is contained in:
hwsmm 2025-01-02 13:32:44 +09:00
parent 9daf986190
commit 23a3b77bcd
1 changed files with 7 additions and 7 deletions

14
External/build.sh vendored
View File

@ -36,12 +36,12 @@ if [[ $RUNNER_OS == 'Linux' ]]; then
$SUDO apt-get install -y \ $SUDO apt-get install -y \
$GCC \ $GCC \
$GPP \ $GPP \
git \ git \
cmake \ cmake \
ninja-build \ ninja-build \
wayland-scanner++ \ wayland-scanner++ \
wayland-protocols \ wayland-protocols \
meson \ meson \
pkg-config$TARGET_APT_ARCH \ pkg-config$TARGET_APT_ARCH \
libasound2-dev$TARGET_APT_ARCH \ libasound2-dev$TARGET_APT_ARCH \
libdbus-1-dev$TARGET_APT_ARCH \ libdbus-1-dev$TARGET_APT_ARCH \
@ -49,9 +49,9 @@ if [[ $RUNNER_OS == 'Linux' ]]; then
libgl1-mesa-dev$TARGET_APT_ARCH \ libgl1-mesa-dev$TARGET_APT_ARCH \
libgles2-mesa-dev$TARGET_APT_ARCH \ libgles2-mesa-dev$TARGET_APT_ARCH \
libglu1-mesa-dev$TARGET_APT_ARCH \ libglu1-mesa-dev$TARGET_APT_ARCH \
libgtk-3-dev$TARGET_APT_ARCH \ libgtk-3-dev$TARGET_APT_ARCH \
libibus-1.0-dev$TARGET_APT_ARCH \ libibus-1.0-dev$TARGET_APT_ARCH \
libpango1.0-dev$TARGET_APT_ARCH \ libpango1.0-dev$TARGET_APT_ARCH \
libpulse-dev$TARGET_APT_ARCH \ libpulse-dev$TARGET_APT_ARCH \
libsndio-dev$TARGET_APT_ARCH \ libsndio-dev$TARGET_APT_ARCH \
libudev-dev$TARGET_APT_ARCH \ libudev-dev$TARGET_APT_ARCH \
@ -74,9 +74,9 @@ if [[ $RUNNER_OS == 'Linux' ]]; then
if [[ $TARGET_APT_ARCH != :i386 ]]; then if [[ $TARGET_APT_ARCH != :i386 ]]; then
# Build libdecor. # Build libdecor.
# This is required so that window decorations can work on wayland. # This is required so that window decorations can work on wayland.
# The support will only be enabled in SDL, but we're not shipping the libdecor binaries # The support will only be enabled in SDL, but we're not shipping the libdecor binaries
# because making them work from a c# app as everything else does (via runtimes) is too difficult. # because making them work from a c# app as everything else does (via runtimes) is too difficult.
# Also skip i386 because attempting to support this for i386 is a pain. # Also skip i386 because attempting to support this for i386 is a pain.
# Special shoutouts to gnome for refusing to support server-side decorations. # Special shoutouts to gnome for refusing to support server-side decorations.
git clone https://gitlab.freedesktop.org/libdecor/libdecor.git git clone https://gitlab.freedesktop.org/libdecor/libdecor.git
cd libdecor cd libdecor