new bblfs: x11-libs/xtrans-1.6.0

This commit is contained in:
2026-01-07 03:21:14 -05:00
parent 98c5e9a8c9
commit f90ca8a6f2

View File

@@ -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: