35 lines
998 B
Bash
35 lines
998 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libxau
|
|
_openbsdver=6.9
|
|
pkgver=1.0.9
|
|
pkgrel=3
|
|
pkgdesc="X11 authorisation library, provided by Xenocara"
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.xenocara.org"
|
|
depends=('glibc' 'xenocara-proto')
|
|
makedepends=('pkg-config' 'xenocara-util-macros')
|
|
license=('X11')
|
|
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libxau-$pkgver.tar.lz{,.sig})
|
|
sha512sums=('51d643507584a54dbe0fa2e4bd5b65ae2c845242a310776807aa48dfe61986e659fb6fe4618567cd12ab23617dfb65f53203e1517ba24ce4364df8692fd7b368'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
prepare() {
|
|
cd "xenocara-$_openbsdver/lib/libXau"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "xenocara-$_openbsdver/lib/libXau"
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "xenocara-$_openbsdver/lib/libXau"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|