Update package version to 2.46

This commit is contained in:
2025-10-03 14:50:35 +03:00
parent 06bb7c934d
commit ce53028503
2 changed files with 15 additions and 21 deletions
+10 -2
View File
@@ -1,8 +1,16 @@
name: xkeyboard-config name: xkeyboard-config
description: X Keyboard Extension description: X Keyboard Extension
version: 2.45 version: "2.46"
revision: 1
url: https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config url: https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config
license: LicenseRef-xkeyboard-config license: LicenseRef-xkeyboard-config
architecture: any architecture: any
make_depends: ["meson","python3"]
type: source type: source
make_depends:
- meson
- python3
downloads:
- url: https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/archive/xkeyboard-config-2.46/xkeyboard-config-xkeyboard-config-2.46.tar.gz?ref_type=tags
extract_to_bpm_source: true
extract_strip_components: 1
checksum: 81107e12f71087b3f1d7dea43c186805d46abaffead0cafca9bdd24b94c2007e
+5 -19
View File
@@ -2,38 +2,24 @@
# 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/data/xkeyboard-config/xkeyboard-config-${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() {
mkdir build meson setup --prefix=/usr --buildtype=release build
cd build meson compile -C build
meson setup --prefix=/usr --buildtype=release ..
ninja
} }
# The check function is executed in the source directory # The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly # This function is used to run tests to verify the package has been compiled correctly
check() { check() {
cd build meson test -C build --print-errorlogs
ninja test
} }
# 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"/COPYING "$BPM_OUTPUT"/usr/share/licenses/xkeyboard-config/COPYING install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/xkeyboard-config/COPYING
} }