mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2026-02-05 09:40:14 +01:00
Scripts has hardcoded versions vs. pulling hypr-env
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
This commit is contained in:
parent
fd832ef277
commit
118d1509bb
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.10.0"
|
tag="v0.10.0"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${AQUAMARINE_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${AQUAMARINE_TAG:-}" ]; then tag="$AQUAMARINE_TAG"; fi
|
if [ -n "${AQUAMARINE_TAG:-}" ]; then tag="$AQUAMARINE_TAG"; fi
|
||||||
|
|
||||||
@ -43,7 +48,7 @@ fi
|
|||||||
|
|
||||||
# Clone and build
|
# Clone and build
|
||||||
printf "${INFO} Installing ${YELLOW}aquamarine $tag${RESET} ...\n"
|
printf "${INFO} Installing ${YELLOW}aquamarine $tag${RESET} ...\n"
|
||||||
if git clone --recursive -b $tag https://github.com/hyprwm/aquamarine.git; then
|
if git clone --recursive -b "$tag" https://github.com/hyprwm/aquamarine.git; then
|
||||||
cd aquamarine || exit 1
|
cd aquamarine || exit 1
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/local -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/local -S . -B ./build
|
||||||
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
||||||
|
|||||||
@ -10,6 +10,12 @@ librsvg2-dev
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.1.13"
|
tag="v0.1.13"
|
||||||
|
# Auto-source centralized tags if env is unset; allow override via HYPRCURSOR_TAG if present
|
||||||
|
if [ -z "${HYPRCURSOR_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
|
if [ -n "${HYPRCURSOR_TAG:-}" ]; then tag="$HYPRCURSOR_TAG"; fi
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## 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 )"
|
||||||
|
|||||||
@ -9,6 +9,11 @@ hyprgraphics=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.4.0"
|
tag="v0.4.0"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRGRAPHICS_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRGRAPHICS_TAG:-}" ]; then tag="$HYPRGRAPHICS_TAG"; fi
|
if [ -n "${HYPRGRAPHICS_TAG:-}" ]; then tag="$HYPRGRAPHICS_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -18,6 +18,11 @@ guiutils=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.2.0"
|
tag="v0.2.0"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRLAND_GUIUTILS_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRLAND_GUIUTILS_TAG:-}" ]; then tag="$HYPRLAND_GUIUTILS_TAG"; fi
|
if [ -n "${HYPRLAND_GUIUTILS_TAG:-}" ]; then tag="$HYPRLAND_GUIUTILS_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.7.0"
|
tag="v0.7.0"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRLAND_PROTOCOLS_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRLAND_PROTOCOLS_TAG:-}" ]; then tag="$HYPRLAND_PROTOCOLS_TAG"; fi
|
if [ -n "${HYPRLAND_PROTOCOLS_TAG:-}" ]; then tag="$HYPRLAND_PROTOCOLS_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -16,6 +16,11 @@ qt_support=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.1.0"
|
tag="v0.1.0"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRLAND_QT_SUPPORT_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRLAND_QT_SUPPORT_TAG:-}" ]; then tag="$HYPRLAND_QT_SUPPORT_TAG"; fi
|
if [ -n "${HYPRLAND_QT_SUPPORT_TAG:-}" ]; then tag="$HYPRLAND_QT_SUPPORT_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -4,6 +4,11 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.53.0"
|
tag="v0.53.0"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRLAND_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRLAND_TAG:-}" ]; then tag="$HYPRLAND_TAG"; fi
|
if [ -n "${HYPRLAND_TAG:-}" ]; then tag="$HYPRLAND_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.6.7"
|
tag="v0.6.7"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRLANG_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRLANG_TAG:-}" ]; then tag="$HYPRLANG_TAG"; fi
|
if [ -n "${HYPRLANG_TAG:-}" ]; then tag="$HYPRLANG_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -5,6 +5,11 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.4.1"
|
tag="v0.4.1"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRTOOLKIT_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRTOOLKIT_TAG:-}" ]; then tag="$HYPRTOOLKIT_TAG"; fi
|
if [ -n "${HYPRTOOLKIT_TAG:-}" ]; then tag="$HYPRTOOLKIT_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -5,6 +5,11 @@
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.10.4"
|
tag="v0.10.4"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRUTILS_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRUTILS_TAG:-}" ]; then tag="$HYPRUTILS_TAG"; fi
|
if [ -n "${HYPRUTILS_TAG:-}" ]; then tag="$HYPRUTILS_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -9,6 +9,11 @@ scan_depend=(
|
|||||||
|
|
||||||
#specific branch or release
|
#specific branch or release
|
||||||
tag="v0.4.5"
|
tag="v0.4.5"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${HYPRWAYLAND_SCANNER_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${HYPRWAYLAND_SCANNER_TAG:-}" ]; then tag="$HYPRWAYLAND_SCANNER_TAG"; fi
|
if [ -n "${HYPRWAYLAND_SCANNER_TAG:-}" ]; then tag="$HYPRWAYLAND_SCANNER_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
@ -5,6 +5,11 @@
|
|||||||
|
|
||||||
# Specific branch or release (honor env override)
|
# Specific branch or release (honor env override)
|
||||||
tag="v0.1.0"
|
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
|
if [ -n "${HYPRWIRE_TAG:-}" ]; then tag="$HYPRWIRE_TAG"; fi
|
||||||
|
|
||||||
# Dry-run support
|
# Dry-run support
|
||||||
|
|||||||
@ -5,6 +5,11 @@
|
|||||||
|
|
||||||
#specific tag or release (e.g., 1.45, 1.46)
|
#specific tag or release (e.g., 1.45, 1.46)
|
||||||
tag="1.45"
|
tag="1.45"
|
||||||
|
# Auto-source centralized tags if env is unset
|
||||||
|
if [ -z "${WAYLAND_PROTOCOLS_TAG:-}" ]; then
|
||||||
|
TAGS_FILE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/hypr-tags.env"
|
||||||
|
[ -f "$TAGS_FILE" ] && source "$TAGS_FILE"
|
||||||
|
fi
|
||||||
# Allow environment override
|
# Allow environment override
|
||||||
if [ -n "${WAYLAND_PROTOCOLS_TAG:-}" ]; then tag="$WAYLAND_PROTOCOLS_TAG"; fi
|
if [ -n "${WAYLAND_PROTOCOLS_TAG:-}" ]; then tag="$WAYLAND_PROTOCOLS_TAG"; fi
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user