Update package version to 0.19.3

This commit is contained in:
2026-03-22 14:18:43 +02:00
parent 538120384e
commit adf3a1c7f2
2 changed files with 8 additions and 9 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
name: wlroots name: wlroots
description: A modular Wayland compositor library description: A modular Wayland compositor library
version: 0.19.2 version: 0.19.3
revision: 1 revision: 1
url: https://gitlab.freedesktop.org/wlroots/wlroots url: https://gitlab.freedesktop.org/wlroots/wlroots
license: MIT license: MIT
maintainers:
- [email protected]
architecture: any architecture: any
type: source type: source
depends: depends:
@@ -34,4 +36,4 @@ downloads:
- url: https://gitlab.freedesktop.org/wlroots/wlroots/-/archive/${BPM_PKG_VERSION}/wlroots-${BPM_PKG_VERSION}.tar.gz - url: https://gitlab.freedesktop.org/wlroots/wlroots/-/archive/${BPM_PKG_VERSION}/wlroots-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: f0530ecaa8739d15f97bd1e1edddb77e281d57e42d4263fccb67157f71730d17 checksum: a6ff89b64ea15e424d1b0db4a22145fccf5ec2ff2e7b8af0fa35e2ac8975986f
+4 -7
View File
@@ -5,18 +5,15 @@
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
mkdir build meson setup build --prefix=/usr --libdir=/usr/lib
cd build meson compile -C build
meson setup --prefix=/usr --libdir=/usr/lib ..
ninja
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
cd build meson install -C build --destdir="$BPM_OUTPUT"
DESTDIR="$BPM_OUTPUT" ninja install
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/wlroots/LICENSE install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/wlroots/LICENSE
} }