aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorNotAShelf <[email protected]>2022-12-15 15:39:55 +0300
committerGitHub <[email protected]>2022-12-15 12:39:55 +0000
commit9702b8ce757d1ecd32d62bde1e339a74ba11dd1c (patch)
tree05b348ada117b57df0bcee7114d13a6afb8e8cee /Makefile
parentefc686423ac9764b64177db9c80e4835d57863d7 (diff)
downloadHyprland-9702b8ce757d1ecd32d62bde1e339a74ba11dd1c.tar.gz
Hyprland-9702b8ce757d1ecd32d62bde1e339a74ba11dd1c.zip
do not overwrite existing `hyprland.desktop` (#1228)
* copy desktop file only if does not exist - Should no longer overwrite modified desktop files for pre-packaged versions of Hyprland. * re-add cleaninstall with deprecation notice Co-authored-by: NotAShelf <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 3 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index aa7357e1..bb18e240 100644
--- a/Makefile
+++ b/Makefile
@@ -160,10 +160,10 @@ install:
cd hyprctl && make all && cd ..
mkdir -p /usr/share/wayland-sessions
- cp ./example/hyprland.desktop /usr/share/wayland-sessions/
mkdir -p ${PREFIX}/bin
cp ./build/Hyprland ${PREFIX}/bin
cp ./hyprctl/hyprctl ${PREFIX}/bin
+ if [ ! -f /usr/share/wayland-sessions/hyprland.desktop ]; then cp ./example/hyprland.desktop /usr/share/wayland-sessions; fi
mkdir -p ${PREFIX}/share/hyprland
cp ./assets/wall_2K.png ${PREFIX}/share/hyprland
cp ./assets/wall_4K.png ${PREFIX}/share/hyprland
@@ -172,23 +172,8 @@ install:
install -Dm644 -t ${PREFIX}/share/man/man1 ./docs/*.1
cleaninstall:
- make clear
- make fixwlr
- cd ./subprojects/wlroots && meson build/ --buildtype=release && ninja -C build/ && cp ./build/libwlroots.so.12032 /usr/lib/ && cd ../..
- make protocols
- make release
- cd hyprctl && make all && cd ..
-
- mkdir -p /usr/share/wayland-sessions
- mkdir -p ${PREFIX}/bin
- cp ./build/Hyprland ${PREFIX}/bin
- cp ./hyprctl/hyprctl ${PREFIX}/bin
- mkdir -p ${PREFIX}/share/hyprland
- cp ./assets/wall_2K.png ${PREFIX}/share/hyprland
- cp ./assets/wall_4K.png ${PREFIX}/share/hyprland
- cp ./assets/wall_8K.png ${PREFIX}/share/hyprland
-
- install -Dm644 -t ${PREFIX}/share/man/man1 ./docs/*.1
+ echo -en "make cleaninstall has been DEPRECATED, you should avoid using it in the future.\nRunning make install instead...\n"
+ make install
uninstall:
rm -f ${PREFIX}/share/wayland-sessions/hyprland.desktop