mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
66 lines
2.1 KiB
Bash
Executable File
66 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# 💫 https://github.com/JaKooLit 💫 #
|
|
# hyprwayland-scanner - One depency from Hyprland v0.40.0#
|
|
|
|
scan_depend=(
|
|
libpugixml-dev
|
|
)
|
|
#specific branch or release
|
|
scan_tag="v0.3.10"
|
|
|
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
|
# Determine the directory where the script is located
|
|
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" || exit 1
|
|
|
|
source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"
|
|
|
|
# Set the name of the log file to include the current date and time
|
|
LOG="Install-Logs/install-$(date +%d-%H%M%S)_hyprlang.log"
|
|
MLOG="install-$(date +%d-%H%M%S)_hyprwayland-scanner.log"
|
|
|
|
##
|
|
# Installation of dependencies
|
|
printf "\n%s - Installing hyprwayland-scanner dependencies.... \n" "${NOTE}"
|
|
|
|
for PKG1 in "${scan_depend[@]}"; do
|
|
install_package "$PKG1" 2>&1 | tee -a "$LOG"
|
|
if [ $? -ne 0 ]; then
|
|
echo -e "\e[1A\e[K${ERROR} - $PKG1 Package installation failed, Please check the installation logs"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
printf "${NOTE} Installing hyprwayland-scanner...\n"
|
|
|
|
# Check if hyprwayland-scanner folder exists and remove it
|
|
if [ -d "hyprwayland-scanner" ]; then
|
|
printf "${NOTE} Removing existing hyprwayland-scanner folder...\n"
|
|
rm -rf "hyprwayland-scanner"
|
|
fi
|
|
|
|
# Clone and build hyprlang
|
|
printf "${NOTE} Installing hyprwayland-scanner...\n"
|
|
if git clone --recursive -b $scan_tag https://github.com/hyprwm/hyprwayland-scanner.git; then
|
|
cd hyprwayland-scanner || exit 1
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -B build
|
|
cmake --build build -j `nproc`
|
|
if sudo cmake --install build 2>&1 | tee -a "$MLOG" ; then
|
|
printf "${OK} hyprwayland-scanner installed successfully.\n" 2>&1 | tee -a "$MLOG"
|
|
else
|
|
echo -e "${ERROR} Installation failed for hyprwayland-scanner." 2>&1 | tee -a "$MLOG"
|
|
fi
|
|
#moving the addional logs to Install-Logs directory
|
|
mv $MLOG ../Install-Logs/ || true
|
|
cd ..
|
|
else
|
|
echo -e "${ERROR} Download failed for hyprwayland-scanner. Please check log." 2>&1 | tee -a "$LOG"
|
|
fi
|
|
|
|
|
|
clear
|
|
|