summaryrefslogtreecommitdiff
path: root/user/libxkbfile
diff options
context:
space:
mode:
authorErmine <mustela@erminea.space>2024-08-28 19:14:47 +0000
committerErmine <mustela@erminea.space>2024-09-01 12:53:53 +0000
commit51ae25d909a9365c00d3704fc2f16f5dbd3570fd (patch)
treefd7f6f794cf2b2303d7e8857458f94992dcdd49a /user/libxkbfile
parentd6300d8a80031f79f8e402fcd9dff617d02d7a2c (diff)
downloadpackages-51ae25d909a9365c00d3704fc2f16f5dbd3570fd.tar.gz
packages-51ae25d909a9365c00d3704fc2f16f5dbd3570fd.tar.bz2
packages-51ae25d909a9365c00d3704fc2f16f5dbd3570fd.tar.xz
packages-51ae25d909a9365c00d3704fc2f16f5dbd3570fd.zip
user/libxkbfile: upgrade to 1.1.3
Also use meson instead of autotools
Diffstat (limited to 'user/libxkbfile')
-rw-r--r--user/libxkbfile/APKBUILD22
1 files changed, 9 insertions, 13 deletions
diff --git a/user/libxkbfile/APKBUILD b/user/libxkbfile/APKBUILD
index 1cc6feb63..ea8d2e240 100644
--- a/user/libxkbfile/APKBUILD
+++ b/user/libxkbfile/APKBUILD
@@ -1,31 +1,27 @@
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=libxkbfile
-pkgver=1.1.1
+pkgver=1.1.3
pkgrel=0
pkgdesc="X11 keyboard file manipulation library"
url="https://www.X.Org/"
arch="all"
+options="!check" # no test suite
license="MIT AND X11"
depends=""
-makedepends="libx11-dev util-macros"
+makedepends="libx11-dev meson"
subpackages="$pkgname-dev"
source="https://www.X.Org/releases/individual/lib/$pkgname-$pkgver.tar.xz"
build() {
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
+ meson setup \
--prefix=/usr \
- --sysconfdir=/etc
- make
-}
-
-check() {
- make check
+ --sysconfdir=/etc \
+ build
+ meson compile -C build
}
package() {
- make DESTDIR="$pkgdir" install
+ DESTDIR="$pkgdir" meson install -C build
}
-sha512sums="2902d21860e27a27159123a19f7d4e0cf9cf8933685f1d2477e69ec647f0f8629b58bbfc391ed45e8b51a10033f18a9d0f16f7f519da9923cd7ed3bd497cf1a2 libxkbfile-1.1.1.tar.xz"
+sha512sums="d80ac41f6fa3a1ffad77ea1f8f9d9542f0bd210d74b263802bc6e6c1594fe325b27f42b5454aeeb36352518963b1ed1fdbbad95d7db3690b2e36d54742b7c236 libxkbfile-1.1.3.tar.xz"