mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 02:10:13 +01:00
Fixed package name for libdisplay-info2 failed to install
On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOGS.md modified: install-scripts/00-dependencies.sh
This commit is contained in:
parent
9281ac4295
commit
cb1250ce8d
@ -6,7 +6,10 @@
|
||||
- Hyprland Build to v0.52.2
|
||||
- Thanks entirely to @sdegler
|
||||
- Fixed:
|
||||
- `qt5-style-kvantum-themes` failed to install Wrong package name
|
||||
- `qt5-style-kvantum-themes` failed to install
|
||||
- Wrong package name it's `qt-style-kvantume-themes`
|
||||
- `libdisplay-info2` failed to install
|
||||
- New package name: `libdisplay-info3`
|
||||
|
||||
## 10 October 2025
|
||||
|
||||
|
||||
@ -110,7 +110,7 @@ hyprland_dep=(
|
||||
binutils
|
||||
libc6
|
||||
libcairo2-dev
|
||||
libdisplay-info2
|
||||
libdisplay-info3
|
||||
libdrm2
|
||||
libjpeg-dev
|
||||
libjxl-dev
|
||||
@ -136,11 +136,14 @@ build_dep=(
|
||||
)
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
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; }
|
||||
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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user