From 7ed3cc994b57ceaa28328abdc563b86ef4103ef4 Mon Sep 17 00:00:00 2001 From: xhaa123 Date: Mon, 15 Apr 2024 10:04:53 +0800 Subject: [PATCH] libxau 1.0.11-1 --- PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 PKGBUILD diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..a5bba1f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,30 @@ +# 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 +pkgname=libxau +pkgver=1.0.11 +pkgrel=1 +pkgdesc="X11 authorisation library" +arch=('x86_64') +url="https://xorg.freedesktop.org/" +license=('custom') +depends=('glibc' 'xorgproto') +source=(https://www.x.org/pub/individual/lib/libXau-${pkgver}.tar.xz) +sha256sums=(f3fa3282f5570c3f6bd620244438dbfbdd580fc80f02f549587a0f8ab329bbeb) + +build() { + cd libXau-${pkgver} + + ${CONFIGURE} --disable-static + + make +} + +package() { + cd libXau-${pkgver} + + make DESTDIR=${pkgdir} install +}