From adf3a1c7f27f64452f47b22b670ee14f8e7c0924 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 22 Mar 2026 14:18:43 +0200 Subject: [PATCH] Update package version to 0.19.3 --- pkg.info | 6 ++++-- source.sh | 11 ++++------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/pkg.info b/pkg.info index 92b4db9..3f40c02 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,11 @@ name: wlroots description: A modular Wayland compositor library -version: 0.19.2 +version: 0.19.3 revision: 1 url: https://gitlab.freedesktop.org/wlroots/wlroots license: MIT +maintainers: + - enumdev@enumerated.dev architecture: any type: source depends: @@ -34,4 +36,4 @@ downloads: - url: https://gitlab.freedesktop.org/wlroots/wlroots/-/archive/${BPM_PKG_VERSION}/wlroots-${BPM_PKG_VERSION}.tar.gz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: f0530ecaa8739d15f97bd1e1edddb77e281d57e42d4263fccb67157f71730d17 + checksum: a6ff89b64ea15e424d1b0db4a22145fccf5ec2ff2e7b8af0fa35e2ac8975986f diff --git a/source.sh b/source.sh index 5767a61..688edd8 100644 --- a/source.sh +++ b/source.sh @@ -5,18 +5,15 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - mkdir build - cd build - - meson setup --prefix=/usr --libdir=/usr/lib .. - ninja + meson setup build --prefix=/usr --libdir=/usr/lib + meson compile -C build } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - cd build - DESTDIR="$BPM_OUTPUT" ninja install + meson install -C build --destdir="$BPM_OUTPUT" + # Install package license install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/wlroots/LICENSE }