Date: Saturday, May 16, 2020 @ 13:48:48
Author: foutrelis
Revision: 384673
archrelease: copy trunk to staging-x86_64
Added:
libxau/repos/staging-x86_64/
libxau/repos/staging-x86_64/PKGBUILD
(from rev 384672, libxau/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: libxau/repos/staging-x86_64/PKGBUILD (from rev 384672,
libxau/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-05-16 13:48:48 UTC (rev 384673)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR <[email protected]>
+# Maintainer: Jan de Groot <[email protected]>
+# Contributor: Alexander Baldeck <[email protected]>
+
+pkgname=libxau
+pkgver=1.0.9
+pkgrel=3
+pkgdesc="X11 authorisation library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/"
+depends=('glibc')
+makedepends=('xorgproto')
+license=('custom')
+source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2{,.sig})
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith
<[email protected]>"
+sha512sums=('3ca454ba466a807ea28b0f715066d73dc76ad312697b121d43e4d5766215052e9b7ffb8fe3ed3e496fa3f2a13f164ac692ff85cc428e26731b679f0f06a1d562'
+ 'SKIP')
+
+build() {
+ cd libXau-${pkgver}
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd libXau-${pkgver}
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}