From 71184a69990d000c84f2f49f89ae0bb3c30ac440 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 11 Oct 2025 19:06:36 +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 0b72bae..aa32d83 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: plasma-wayland-protocols description: Plasma Specific Protocols for Wayland version: 1.19.0 -revision: 1 +revision: 2 url: https://invent.kde.org/libraries/plasma-wayland-protocols license: LGPL2.1-or-later architecture: any diff --git a/source.sh b/source.sh index 593e586..e755b08 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 + cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib cmake --build build }