mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2026-02-05 01:30:13 +01:00
On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: install-scripts/aquamarine.sh modified: install-scripts/hyprcursor.sh modified: install-scripts/hyprgraphics.sh modified: install-scripts/hyprland-guiutils.sh modified: install-scripts/hyprland-protocols.sh modified: install-scripts/hyprland-qt-support.sh modified: install-scripts/hyprland.sh modified: install-scripts/hyprlang.sh modified: install-scripts/hyprtoolkit.sh modified: install-scripts/hyprutils.sh modified: install-scripts/hyprwayland-scanner.sh modified: install-scripts/hyprwire.sh modified: install-scripts/wayland-protocols-src.sh
92 lines
3.3 KiB
Bash
Executable File
92 lines
3.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# 💫 https://github.com/JaKooLit 💫 #
|
|
# Hypr Ecosystem
|
|
# hyprwire
|
|
|
|
# Specific branch or release (honor env override)
|
|
tag="v0.1.0"
|
|
# Auto-source centralized tags if env is unset
|
|
if [ -z "${HYPRWIRE_TAG:-}" ]; then
|
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
|
fi
|
|
if [ -n "${HYPRWIRE_TAG:-}" ]; then tag="$HYPRWIRE_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)_hyprwire.log"
|
|
MLOG="install-$(date +%d-%H%M%S)_hyprwire2.log"
|
|
|
|
printf "${NOTE} Installing hyprwire $tag...\n"
|
|
|
|
# Remove existing tree if present
|
|
if [ -d "hyprwire" ]; then
|
|
printf "${NOTE} Removing existing hyprwire folder...\n"
|
|
rm -rf "hyprwire" 2>&1 | tee -a "$LOG"
|
|
fi
|
|
|
|
# Clone and build
|
|
if git clone --recursive -b "$tag" https://github.com/hyprwm/hyprwire.git; then
|
|
cd hyprwire || exit 1
|
|
|
|
# Temporary compatibility shim for compilers/libstdc++ without std::vector::append_range
|
|
cat > append_range_compat.hpp <<'EOF'
|
|
#pragma once
|
|
#include <iterator>
|
|
#define APPEND_RANGE(vec, ...) (vec).insert((vec).end(), std::begin(__VA_ARGS__), std::end(__VA_ARGS__))
|
|
EOF
|
|
# Replace X.append_range(Y) -> APPEND_RANGE(X, Y) only where it appears
|
|
PATCH_FILES=$(grep -RIl --exclude-dir=.git 'append_range\(' . || true)
|
|
if [ -n "$PATCH_FILES" ]; then
|
|
# Replace LHS .append_range(arg...) with APPEND_RANGE(LHS, arg...)
|
|
# LHS: identifiers and common member/ptr chains (this->obj, ns::obj.member)
|
|
echo "$PATCH_FILES" | xargs -r sed -ri 's/([A-Za-z_][A-Za-z0-9_:\->\.]+)\s*\.\s*append_range\s*\(/APPEND_RANGE(\1, /g'
|
|
# Show any remaining occurrences
|
|
REMAIN=$(grep -RIn --exclude-dir=.git '\.\s*append_range\s*\(' $PATCH_FILES || true)
|
|
if [ -n "$REMAIN" ]; then
|
|
echo "[WARN] Some append_range() calls remain unpatched:" >&2
|
|
echo "$REMAIN" >&2
|
|
fi
|
|
fi
|
|
|
|
# Absolute path for forced include
|
|
APPEND_HDR="$(pwd)/append_range_compat.hpp"
|
|
|
|
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_CXX_STANDARD=23 -DCMAKE_CXX_FLAGS="-include ${APPEND_HDR}"
|
|
cmake --build build -j "$(nproc 2>/dev/null || getconf _NPROCESSORS_CONF)"
|
|
if [ $DO_INSTALL -eq 1 ]; then
|
|
if sudo cmake --install build 2>&1 | tee -a "$MLOG" ; then
|
|
printf "${OK} hyprwire $tag installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
|
else
|
|
echo -e "${ERROR} Installation failed for hyprwire $tag" 2>&1 | tee -a "$MLOG"
|
|
fi
|
|
else
|
|
echo "${NOTE} DRY RUN: Skipping installation of hyprwire $tag."
|
|
fi
|
|
[ -f "$MLOG" ] && mv "$MLOG" ../Install-Logs/
|
|
cd ..
|
|
else
|
|
echo -e "${ERROR} Download failed for hyprwire $tag" 2>&1 | tee -a "$LOG"
|
|
fi
|
|
|
|
printf "\n%.0s" {1..2}
|