From 5d3fd8afe2a38ccf4ad87fff5f2bde832d4688cb Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 1 Feb 2026 10:12:45 +0200 Subject: [PATCH] Update package version to 1.2.0 --- pkg.info | 19 ++++++++++++++++--- source.sh | 23 ++++------------------- 2 files changed, 20 insertions(+), 22 deletions(-) diff --git a/pkg.info b/pkg.info index c941829..f5fda68 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,22 @@ name: libxkbfile description: X11 keyboard file manipulation library -version: 1.1.3 +version: 1.2.0 +revision: 1 url: https://gitlab.freedesktop.org/xorg/lib/libxkbfile license: LicenseRef-libxkbfile +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["glibc","libx11","xorgproto"] -make_depends: ["meson","xorg-util-macros"] type: source +depends: + - glibc + - libx11 + - xorgproto +make_depends: + - meson + - xorg-util-macros +downloads: + - url: https://www.x.org/pub/individual/lib/libxkbfile-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 7f71884e5faf56fb0e823f3848599cf9b5a9afce51c90982baeb64f635233ebf diff --git a/source.sh b/source.sh index dae6988..08afdc4 100644 --- a/source.sh +++ b/source.sh @@ -2,33 +2,18 @@ # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT -DOWNLOAD="https://www.x.org/pub/individual/lib/libxkbfile-${BPM_PKG_VERSION}.tar.xz" -FILENAME="${DOWNLOAD##*/}" - -# The prepare function is executed in the root of the temp directory -# This function is used for downloading files and putting them into the correct location -prepare() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" -} - # The build function is executed in the source directory # This function is used to compile the source code build() { - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static - make -} - -# The check function is executed in the source directory -# This function is used to run tests to verify the package has been compiled correctly -check() { - make check + meson setup build --prefix=/usr + 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() { - make DESTDIR="$BPM_OUTPUT" install + meson install -C build --destdir="$BPM_OUTPUT" + # Install package license install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libxkbfile/COPYING }