From f6b3b70429ec4d0a72d2c1e12a33df8873e403f9 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 8 Mar 2026 12:47:42 +0200 Subject: [PATCH] Update package version to 0.9.5 --- pkg.info | 6 ++++-- source.sh | 11 +++-------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/pkg.info b/pkg.info index 7197c3c..efe9997 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,11 @@ name: labwc description: A Wayland window-stacking compositor -version: 0.9.3 +version: 0.9.5 revision: 1 url: https://github.com/labwc/labwc license: GPL2-only +maintainers: + - enumdev@enumerated.dev architecture: any type: source depends: @@ -32,4 +34,4 @@ downloads: - url: https://github.com/labwc/labwc/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: 38d273faa4e021b9f99e1bf1a5f4bf881cc6a592e00c7b3426b37c0a0b67d126 + checksum: 905af63ad24643a6f548b51107a05ac639d1707aaafdd18f656b55f7cfb28611 diff --git a/source.sh b/source.sh index f661d1a..66ebf32 100644 --- a/source.sh +++ b/source.sh @@ -5,19 +5,14 @@ # 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 -Dman-pages=enabled .. - meson compile + meson setup build --prefix=/usr -Dman-pages=enabled + 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 - - meson install --destdir="$BPM_OUTPUT" + meson install -C build --destdir="$BPM_OUTPUT" # Install package license install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/labwc/LICENSE