libxext 1.3.6-1

This commit is contained in:
xhaa123 2024-04-15 19:37:59 +08:00
commit 4e32a4b88b

33
PKGBUILD Normal file
View File

@ -0,0 +1,33 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=libxext
pkgver=1.3.6
pkgrel=1
pkgdesc="X11 miscellaneous extensions library"
arch=('x86_64')
url="https://gitlab.freedesktop.org/xorg/lib/libxext"
license=('LicenseRef-libxext')
depends=('libx11' 'glibc' 'libxcb' 'libxau' 'libxdmcp')
makedepends=('util-macros' 'xorgproto')
source=(https://www.x.org/pub/individual/lib/libXext-${pkgver}.tar.xz)
sha256sums=(edb59fa23994e405fdc5b400afdf5820ae6160b94f35e3dc3da4457a16e89753)
build() {
cd libXext-${pkgver}
${CONFIGURE} \
--sysconfdir=/etc \
--disable-static \
--docdir=/usr/share/doc/libXext-${pkgver}
make
}
package() {
cd libXext-${pkgver}
make DESTDIR=${pkgdir} install
}