From c1b027340ff3a823e118ac41d8c028ba1bd5eb35 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 11 Oct 2025 19:09:25 +0300 Subject: [PATCH] Fix libraries being installed to usr/lib64 --- pkg.info | 2 +- source.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg.info b/pkg.info index ea4bcf0..464b00b 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: layer-shell-qt description: Qt component to allow applications to make use of the Wayland wl-layer-shell protocol version: 6.4.91 -revision: 1 +revision: 2 url: https://invent.kde.org/plasma/layer-shell-qt license: LGPL3-or-later architecture: any diff --git a/source.sh b/source.sh index bb1c2fa..3c05287 100644 --- a/source.sh +++ b/source.sh @@ -5,7 +5,7 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -Wno-dev + cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_BUILD_TYPE=Release -Wno-dev cmake --build build }