From 18ac07bad5071cb9f8940d73a6df97c2c6e4614b Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 1 May 2024 10:31:50 +0900 Subject: [PATCH] updated hypr eco system packages to download only specific versions --- install-scripts/hyprcursor.sh | 2 +- install-scripts/hypridle.sh | 2 +- install-scripts/hyprlang.sh | 2 +- install-scripts/hyprlock.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/install-scripts/hyprcursor.sh b/install-scripts/hyprcursor.sh index b9857f8..2e7da5f 100755 --- a/install-scripts/hyprcursor.sh +++ b/install-scripts/hyprcursor.sh @@ -40,7 +40,7 @@ fi # Clone and build printf "${NOTE} Installing hyprcursor...\n" -if git clone https://github.com/hyprwm/hyprcursor.git; then +if git clone --recursive -b v0.1.8 https://github.com/hyprwm/hyprcursor.git; then cd hyprcursor || exit 1 cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` diff --git a/install-scripts/hypridle.sh b/install-scripts/hypridle.sh index b033120..27657aa 100755 --- a/install-scripts/hypridle.sh +++ b/install-scripts/hypridle.sh @@ -39,7 +39,7 @@ fi # Clone and build printf "${NOTE} Installing hypridle...\n" -if git clone https://github.com/hyprwm/hypridle.git; then +if git clone --recursive -b v0.1.2 https://github.com/hyprwm/hypridle.git; then cd hypridle || exit 1 cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build cmake --build ./build --config Release --target hypridle -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` diff --git a/install-scripts/hyprlang.sh b/install-scripts/hyprlang.sh index d4908f0..3b6440b 100755 --- a/install-scripts/hyprlang.sh +++ b/install-scripts/hyprlang.sh @@ -27,7 +27,7 @@ fi # Clone and build hyprlang printf "${NOTE} Installing hyprlang...\n" -if git clone https://github.com/hyprwm/hyprlang.git; then +if git clone --recursive -b v0.5.1 https://github.com/hyprwm/hyprlang.git; then cd hyprlang || exit 1 cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build cmake --build ./build --config Release --target hyprlang -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` diff --git a/install-scripts/hyprlock.sh b/install-scripts/hyprlock.sh index 411e122..cca011a 100755 --- a/install-scripts/hyprlock.sh +++ b/install-scripts/hyprlock.sh @@ -39,7 +39,7 @@ fi # Clone and build hyprlock printf "${NOTE} Installing hyprlock...\n" -if git clone https://github.com/hyprwm/hyprlock.git; then +if git clone --recursive -b v0.1.8 https://github.com/hyprwm/hyprlock.git; then cd hyprlock || exit 1 cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build cmake --build ./build --config Release --target hyprlock -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`