mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - disable assembly
|
|
|
|
pkgname=libglvnd
|
|
pkgver=1.3.3
|
|
pkgrel=1
|
|
pkgdesc="The GL Vendor-Neutral Dispatch library"
|
|
arch=('x86_64')
|
|
url="https://github.com/NVIDIA/libglvnd"
|
|
license=('custom:BSD-like')
|
|
makedepends=('libxext' 'libx11' 'xorgproto' 'python' 'meson')
|
|
provides=('libgl' 'libegl' 'libgles')
|
|
source=("https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v$pkgver/libglvnd-v$pkgver.tar.gz"
|
|
LICENSE)
|
|
sha512sums=('8da13d560ab058c9c81f8d721e55ca9399f3bac9f71599d1c5fbcc0a4b87262476d04c5e84696cc9917cb4317080499cec01445b4b836dc74fe1f57bf6eca89a'
|
|
'bf0f4a7e04220a407400f89226ecc1f798cc43035f2538cc8860e5088e1f84140baf0d4b0b28f66e4b802d4d6925769a1297c24e1ba39c1c093902b2931781a5')
|
|
|
|
build() {
|
|
arch-meson $pkgname-v$pkgver build \
|
|
-D gles1=false -D asm=disabled
|
|
|
|
ninja -C build
|
|
}
|
|
|
|
package() {
|
|
# libglvnd needs mesa for indirect rendering
|
|
depends=('libxext' 'mesa' 'opengl-driver')
|
|
|
|
DESTDIR="$pkgdir" ninja -C build install
|
|
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|