updated hypr eco system packages to download only specific versions

This commit is contained in:
JaKooLit 2024-05-01 10:31:50 +09:00
parent 34ad2efa10
commit 18ac07bad5
4 changed files with 4 additions and 4 deletions

View File

@ -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`

View File

@ -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`

View File

@ -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`

View File

@ -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`