From be43ea0b771bf40dc8f44c917342a51ab5a0ad28 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Wed, 7 Jan 2026 03:26:27 -0500 Subject: [PATCH] new bblfs: x11-misc/compose-tables-1.8.12 --- x11-misc/compose-tables-1.8.12.PKGBUILD | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 x11-misc/compose-tables-1.8.12.PKGBUILD diff --git a/x11-misc/compose-tables-1.8.12.PKGBUILD b/x11-misc/compose-tables-1.8.12.PKGBUILD new file mode 100644 index 0000000..40edfb7 --- /dev/null +++ b/x11-misc/compose-tables-1.8.12.PKGBUILD @@ -0,0 +1,37 @@ +pkgname=compose-tables +pkgver=1.8.12 +pkgdesc="X.Org Compose Key tables from libX11" +homepage="https://gitlab.freedesktop.org/xorg/util/compose-tables" +makedepends=( + pkgconf + x11-base/xorg-proto + x11-libs/libxcb + x11-libs/xtrans +) +sources=("libX11-${pkgver}.tar.xz") +urls=("https://www.x.org/releases/individual/lib/libX11-${pkgver}.tar.xz") +md5sums=("146d770e564812e00f97e0cbdce632b7") + +src_prepare() { + tar -xf ${distdir}/${sources[0]} --strip-components=1 +} + +src_build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --without-xmlto \ + --without-fop \ + --disable-specs \ + --disable-xkb \ + --with-keysymdefdir=/usr/include/X11 + make -C nls +} + +src_install() { + make -C nls DESTDIR="${pkgdir}" install +} + +# vim:ft=sh syn=sh et sw=2: