mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 02:10:13 +01:00
On branch hl-051
Your branch is up to date with 'origin/hl-051'.
Changes to be committed:
modified: dry-run-build.sh
modified: hypr-tags.env
new file: install-scripts/wayland-protocols-src.sh
modified: update-hyprland.sh
66 lines
2.6 KiB
Bash
66 lines
2.6 KiB
Bash
#!/bin/bash
|
|
# 💫 https://github.com/JaKooLit 💫 #
|
|
# Build and install wayland-protocols from source
|
|
# Provides a newer wayland-protocols.pc for pkg-config when distro version is too old
|
|
|
|
#specific tag or release (e.g., 1.45, 1.46)
|
|
tag="1.46"
|
|
# Allow environment override
|
|
if [ -n "${WAYLAND_PROTOCOLS_TAG:-}" ]; then tag="$WAYLAND_PROTOCOLS_TAG"; fi
|
|
|
|
# Dry-run support
|
|
DO_INSTALL=1
|
|
if [ "$1" = "--dry-run" ] || [ "${DRY_RUN}" = "1" ] || [ "${DRY_RUN}" = "true" ]; then
|
|
DO_INSTALL=0
|
|
echo "${NOTE} DRY RUN: install step will be skipped."
|
|
fi
|
|
|
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Change the working directory to the parent directory of the script
|
|
PARENT_DIR="$SCRIPT_DIR/.."
|
|
cd "$PARENT_DIR" || { echo "${ERROR} Failed to change directory to $PARENT_DIR"; exit 1; }
|
|
|
|
# Source the global functions script
|
|
if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then
|
|
echo "Failed to source Global_functions.sh"
|
|
exit 1
|
|
fi
|
|
|
|
# Set the name of the log file to include the current date and time
|
|
LOG="Install-Logs/install-$(date +%d-%H%M%S)_wayland-protocols.log"
|
|
MLOG="install-$(date +%d-%H%M%S)_wayland-protocols2.log"
|
|
|
|
printf "\n%s - Installing ${YELLOW}wayland-protocols (from source)${RESET} .... \n" "${INFO}"
|
|
|
|
# Clean previous clone
|
|
if [ -d "wayland-protocols" ]; then
|
|
rm -rf "wayland-protocols"
|
|
fi
|
|
|
|
# Clone and build (meson)
|
|
# Upstream: https://gitlab.freedesktop.org/wayland/wayland-protocols.git
|
|
printf "${INFO} Installing ${YELLOW}wayland-protocols $tag${RESET} ...\n"
|
|
if git clone --depth=1 -b "$tag" https://gitlab.freedesktop.org/wayland/wayland-protocols.git; then
|
|
cd wayland-protocols || exit 1
|
|
# Install to /usr/local so pkg-config can prefer it over distro /usr
|
|
meson setup build --prefix=/usr/local
|
|
meson compile -C build -j"$(nproc 2>/dev/null || getconf _NPROCESSORS_CONF)"
|
|
if [ $DO_INSTALL -eq 1 ]; then
|
|
if sudo meson install -C build 2>&1 | tee -a "$MLOG" ; then
|
|
printf "${OK} ${MAGENTA}wayland-protocols $tag${RESET} installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
|
else
|
|
echo -e "${ERROR} Installation failed for ${YELLOW}wayland-protocols $tag${RESET}" 2>&1 | tee -a "$MLOG"
|
|
fi
|
|
else
|
|
echo "${NOTE} DRY RUN: Skipping installation of wayland-protocols $tag."
|
|
fi
|
|
# Move additional logs to Install-Logs directory if they exist
|
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/ || true
|
|
cd ..
|
|
else
|
|
echo -e "${ERROR} Download failed for ${YELLOW}wayland-protocols $tag${RESET}" 2>&1 | tee -a "$LOG"
|
|
fi
|
|
|
|
printf "\n%.0s" {1..2} |