Update package version to 1.2.0

This commit is contained in:
2026-02-01 10:12:45 +02:00
parent 6bd57571c9
commit 5d3fd8afe2
2 changed files with 20 additions and 22 deletions
+16 -3
View File
@@ -1,9 +1,22 @@
name: libxkbfile name: libxkbfile
description: X11 keyboard file manipulation library description: X11 keyboard file manipulation library
version: 1.1.3 version: 1.2.0
revision: 1
url: https://gitlab.freedesktop.org/xorg/lib/libxkbfile url: https://gitlab.freedesktop.org/xorg/lib/libxkbfile
license: LicenseRef-libxkbfile license: LicenseRef-libxkbfile
maintainers:
- [email protected]
architecture: any architecture: any
depends: ["glibc","libx11","xorgproto"]
make_depends: ["meson","xorg-util-macros"]
type: source 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
+4 -19
View File
@@ -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 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 # 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 # 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() {
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static meson setup build --prefix=/usr
make meson compile -C build
}
# 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
} }
# 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() {
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 install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libxkbfile/COPYING
} }