From ee23833a568b20eccba7574ee595a4415ef8d0c7 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Wed, 11 Sep 2024 16:35:05 +0000 Subject: [PATCH] Ensured library installation to /usr/lib/ --- pkg.info | 1 + source.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg.info b/pkg.info index 26d487c..6ec10a9 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,7 @@ name: libpsl description: Public Suffix List library version: 0.21.5 +revision: 2 url: https://github.com/rockdaboot/libpsl license: MIT architecture: any diff --git a/source.sh b/source.sh index 8ef8774..5d024d2 100644 --- a/source.sh +++ b/source.sh @@ -17,7 +17,7 @@ prepare() { build() { mkdir build cd build - meson setup --prefix=/usr --buildtype=release + meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release ninja }