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