From 755b8b7008ef310de87c4a43e919bc5a4de6c754 Mon Sep 17 00:00:00 2001 From: gabry Date: Wed, 17 Dec 2025 21:02:06 +0100 Subject: [PATCH] caelestia-shell: fix /opt/qt6 symlink shenanigans --- caelestia-shell.recipe.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/caelestia-shell.recipe.py b/caelestia-shell.recipe.py index aca2c51..e412c1e 100644 --- a/caelestia-shell.recipe.py +++ b/caelestia-shell.recipe.py @@ -1,5 +1,6 @@ pkgname = "caelestia-shell" pkgver = "1.3.4" +qtver = "6.10.1" source = f"https://github.com/caelestia-dots/shell.git" source_type = "git" builddir = f"/tmp/fempkgbuild/shell" @@ -15,6 +16,7 @@ build = [ # 64-bit build f"cd {builddir} && mkdir build && cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/ -DINSTALL_QSCONFDIR=/etc/xdg/quickshell/caelestia -DINSTALL_QMLDIR=/opt/qt6/qml ..", f"cd {builddir}/build && ninja", + f"mkdir -p {destdir}/opt/qt-{qtver} && ln -sf qt-{qtver} {destdir}/opt/qt6", f"cd {builddir}/build && DESTDIR={destdir} ninja install", f"cd {builddir} && wget https://rocketleaguechatp.duckdns.org/app2unit-caelestia.patch && patch -p1 -d {destdir}/etc/xdg/quickshell/caelestia < app2unit-caelestia.patch",