From f90ca8a6f2908860dddb1313a61f9a6680d99f15 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Wed, 7 Jan 2026 03:21:14 -0500 Subject: [PATCH] new bblfs: x11-libs/xtrans-1.6.0 --- x11-libs/xtrans-1.6.0.PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 x11-libs/xtrans-1.6.0.PKGBUILD diff --git a/x11-libs/xtrans-1.6.0.PKGBUILD b/x11-libs/xtrans-1.6.0.PKGBUILD new file mode 100644 index 0000000..3438eec --- /dev/null +++ b/x11-libs/xtrans-1.6.0.PKGBUILD @@ -0,0 +1,31 @@ +pkgname=xtrans +pkgver=1.6.0 +pkgdesc="X transport library" +arch=('any') +license=('HPND' + 'HPND-sell-variant' + 'MIT' + 'MIT-open-group' + 'X11') +homepage="https://xorg.freedesktop.org/" +sources=("${pkgname}-${pkgver}.tar.xz") +urls=("https://xorg.freedesktop.org/releases/individual/lib/${sources[0]}") +md5sums=("6ad67d4858814ac24e618b8072900664") + +src_prepare() { + tar -xf ${distdir}/${sources[0]} --strip-components=1 +} + +src_build() { + ./configure --prefix=/usr \ + --disable-docs \ + --without-xmlto \ + --without-fop +} + +src_install() { + make DESTDIR="$pkgdir" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +} + +# vim:ft=sh syn=sh et sw=2: